﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Bien establecidos */
/* Pendientes */
/*#5B5B5F;*/
/*$menuColorTextoSeleccionado: $colorCorporativo;*/
/*$menuColorBorde: $colorGrisOscuro;*/
/*$menuColorTituloFondo: $colorCorporativo;*/
/*$menuColorTituloTexto: $colorBlanco;*/
/*$menuColorNivel2: $colorGrisClaro;*/
/*$menuColorNivel3: $colorCorporativo;*/
.colorBlanco {
  color: #ffffff;
}

.colorFondoBlanco {
  background-color: #ffffff;
}

.colorNegro {
  color: #030616;
}

.colorFondoNegro {
  background-color: #030616;
}

.colorNegroClaro {
  color: #15181f;
}

.colorFondoNegroClaro {
  background-color: #15181f;
}

.colorNaranja {
  color: #FB8332;
}

.colorFondoNaranja {
  background-color: #FB8332;
}

.colorGrisClaro {
  color: #EEEEEE;
}

.colorFondoGrisClaro {
  background-color: #EEEEEE;
}

.colorGrisMedio {
  color: #212529;
}

.colorFondoGrisMedio {
  background-color: #212529;
}

.colorGrisOscuro {
  color: #333333;
}

.colorFondoGrisOscuro {
  background-color: #333333;
}

.colorVerde {
  color: #B2C500;
}

.colorFondoVerde {
  background-color: #B2C500;
}

.colorRojo {
  color: #ff5252;
}

.colorFondoRojo {
  background-color: #ff5252;
}

.colorAzulOscuro {
  color: #040616;
}

.colorFondoAzulOscuro {
  background-color: #040616;
}

.colorCorporativo {
  color: #375e77;
}

.colorFondoCorporativo {
  background-color: #375e77;
}

.colorSuccess {
  color: #27ae60;
}

.colorWarning {
  color: #e67e22;
}

.colorWarning {
  color: #e67e22;
}

.colorInfo {
  color: #0d6efd;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  min-height: 100vh;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
  color: #699cc6;
}
body a:hover {
  text-decoration: underline;
}

.pointer {
  cursor: pointer;
}

.border-bottom-1 {
  border-bottom: 1px solid #333333;
}

.border-bottom-2 {
  border-bottom: 2px solid #333333;
}

/* Cabecera */
.pageTitle {
  color: #030616;
  /*font-family: "Bitter", serif;*/
  font-size: 1.4em;
  font-weight: 600;
}

.cabecera-aviso {
  display: inline-block;
  vertical-align: middle;
  max-width: 22em;
  margin-right: 0.5em;
  padding: 0.15em 0.5em;
  background-color: #d9534f;
  color: #fff;
  font-weight: 700;
  font-size: 0.65em;
  line-height: 1.15;
  border-radius: 0.2em;
  white-space: normal;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .pageTitle {
    font-size: 2em;
  }
}
.pageHeader {
  color: #030616;
  background-color: #ffe0b2;
}

.loader-wrap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #030616;
  opacity: 0.7;
  transition: none;
  justify-content: center;
  display: flex;
}
.loader-wrap .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  opacity: 1;
  text-align: center;
}
.loader-wrap .loader i {
  font-size: 40px;
  width: 100%;
}
.loader-wrap .loader .text {
  text-transform: uppercase;
  display: block;
  padding-top: 10px;
  color: #ffffff;
  text-align: center;
}

#loader-solapas {
  display: none;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

@keyframes loader-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.88);
  }
}
.loader-solapas-img {
  animation: loader-pulse 1.2s ease-in-out infinite;
}

#loginWrap {
  height: 100vh;
  display: grid;
  place-items: center;
}
#loginWrap #login {
  background-color: #699cc6;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 0 20px #333333;
}

#mainContent {
  transition: margin-left 0.3s ease;
  margin-left: 250px;
}
#mainContent.collapsed {
  margin-left: 80px !important;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #699cc6;
  border-right: 1px solid #dee2e6;
  transition: all 0.3s ease;
  padding-top: 0.5rem;
  z-index: 1030;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar.collapsed {
  width: 80px;
}
.sidebar.collapsed .submenu {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.sidebar.collapsed .submenu a {
  justify-content: center;
  padding: 0.5rem 0;
}
.sidebar a.item {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 1em;
  gap: 0.75rem;
  padding: 0.35rem 1rem;
  text-decoration: none;
  border-radius: 0.375rem;
  margin: 0.25rem 0.25rem;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.sidebar a.item.active {
  background-color: #030616;
  color: #ffffff !important;
}
.sidebar a.item:hover {
  background-color: #e9ecef;
  color: #030616;
  text-decoration: none;
}
.sidebar a.item:hover i {
  color: #030616;
}
.sidebar i {
  font-size: 1em;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  color: #ffffff;
}
.sidebar .text {
  flex: 1;
  min-width: 0;
}
.sidebar.collapsed .text {
  display: none;
}
.sidebar .logo {
  margin-top: 5px;
  margin-bottom: 20px;
}
.sidebar.collapsed .logo .img-fluid {
  display: none;
}

.submenu {
  display: none;
  margin-left: 2rem;
  padding-left: 0.2rem;
  border-left: 2px solid #dee2e6;
}
.submenu.show {
  display: block;
}
.submenu a.item {
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

/* Overlay para movil */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1029;
}
.overlay.show {
  display: block;
}

@media (max-width: 576px) {
  .sidebar {
    left: -250px;
  }
  .sidebar.show {
    left: 0;
    width: 250px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }
  .sidebar.collapsed {
    width: 250px;
  }
  #mainContent,
  #mainContent.collapsed {
    margin-left: 0 !important;
  }
}
#toggleSidebar {
  color: #375e77 !important;
  border-color: #375e77 !important;
}
#toggleSidebar:hover {
  color: #ffffff !important;
  background-color: #375e77 !important;
}

/* FIN MENU */
/* scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #333333;
  border-radius: 10px;
  border: 1px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #333333 #ffffff;
}

/* FIN scrollbar */
.separadorSeccion {
  color: #FB8332;
  margin-bottom: 0.75rem !important;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #FB8332;
  /*font-family: "Bitter", serif;*/
}

.separadorSeccionSinBotones {
  color: #FB8332;
  margin-top: 0.5rem !important;
  margin-bottom: 0.75rem !important;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #FB8332;
  padding-top: 0.5rem;
  padding-bottom: 0.45rem;
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.help {
  padding: 20px;
  border: 1px solid #375e77;
  border-radius: 10px;
  background-color: #ffeaa7;
  font-size: 14px;
  position: absolute;
  z-index: 1000;
  right: 0;
  margin: 0 40px;
  max-width: 700px;
  box-shadow: 3px 3px 5px #212529;
}
.help a {
  border-bottom: 2px dashed #ffeaa7;
  font-style: italic;
}
.help img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.help .cabecera {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #FB8332;
  border-bottom: 1px solid #ffeaa7;
  margin-bottom: 10px;
}
.help .seccion {
  font-weight: 700;
  min-width: 100px;
  white-space: break-spaces;
}
.help .descripcion {
  border-left: 2px dashed #ffeaa7;
  margin-bottom: 10px;
  padding: 0 10px;
}
.help .btn {
  background: #ffeaa7;
  color: #030616;
  border-color: #FB8332;
}

/* SPLIT */
.split {
  display: flex;
  flex-direction: column;
}

.split.active {
  height: 100vh;
}

.topPanel {
  overflow-y: hidden;
  overflow-x: hidden;
}

.topPanel.active {
  overflow-y: auto;
}

.gutter {
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: 50%;
}

.gutter:hover {
  background-color: #ccc;
}

.gutter.gutter-vertical {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=");
  cursor: row-resize;
}

/* Color de fondo datatable cuando Split */
table.table.dataTable.colorTableStrip > :not(caption) > * > * {
  background-color: #f8f9fa;
}

.bg-color-gris-split {
  background-color: #f8f9fa;
}

/* FIN SPLIT */
/* AVATAR */
.avatar-circle {
  width: 40px;
  height: 40px;
  background-color: #007bff; /* Color de fondo, lo va a generar solo */
  color: white; /* Color del texto */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-transform: uppercase;
}

.btn-celeste {
  background-color: #699cc6;
  border-color: #699cc6;
}

.btn-icono-colvis {
  color: #375e77;
  background-color: transparent;
  border: none;
  /*font-size: 1.2rem;*/
}

/* TABS en negro */
.tab-overflow .nav.nav-tabs .active, .nav.nav-tabs .active {
  border-top: 2px solid #030616;
  color: #030616;
}

/* Filtros */
.selectorFiltros {
  font-size: 16px;
}

@media (min-width: 768px) {
  .selectorFiltros {
    font-size: 18px;
  }
}
/* Los botones de las paginas de filtros */
.btn-filtro {
  font-size: 20px;
  width: 40px;
}

.form-label-requerido {
  font-weight: 600 !important;
}

.form-label-requerido::after {
  content: " *";
  font-weight: 600 !important;
}

/* Repartir columnas automaticamente */
th.col-expand, td.col-expand {
  width: auto;
}

/***********************/
/* Cambios bootstrap   */
/***********************/
.form-label {
  margin-bottom: 0;
}

.form-switch .form-check-input {
  height: 31px;
  width: 62px;
  margin-top: 8px;
  cursor: pointer;
}
.form-switch .form-check-label {
  margin-top: 8px;
  margin-left: 5px;
}

.form-check .form-check-input[type=radio] {
  height: 31px;
  width: 31px;
  margin-top: 8px;
  cursor: pointer;
}
.form-check .form-check-label {
  margin-top: 8px;
  margin-left: 5px;
}

.form-check-input:checked,
.form-check-input[type=checkbox]:indeterminate {
  background-color: #FB8332 !important;
  border-color: #FB8332 !important;
}

.form-check-input:focus {
  border-color: #e46e1f !important;
  box-shadow: 0 0 0 0.25rem rgba(251, 131, 50, 0.25) !important;
}

/* Problema en los MAC que saca un fondo gris */
.form-floating > label {
  background: none !important; /* Anula cualquier fondo */
  color: inherit; /* Opcional, para evitar cambios de color */
  opacity: 1 !important;
  background-color: transparent !important;
  z-index: 10; /* A veces ayuda con solapamientos */
}

.form-floating > label::before,
.form-floating > label::after {
  background: none !important;
  background-color: transparent !important;
}

.badge {
  font-weight: 400 !important;
}

.nav-tabs a.nav-link, .nav-tabs a:hover.nav-link {
  color: #030616;
  font-size: 16px;
}

@media (min-width: 768px) {
  .nav-tabs a.nav-link, .nav-tabs a:hover.nav-link {
    font-size: 18px;
  }
}
.modal-title {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 1.25rem;
  }
}
/* Sobreescribir BS con Colores Altamar */
.btn-primary {
  background-color: #FB8332;
  border-color: #FB8332;
}

.btn-primary:hover {
  background-color: #e46e1f;
  border-color: #e46e1f;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  background-color: #e46e1f;
  border-color: #c95e16;
}

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  background-color: #e46e1f;
  border-color: #e46e1f;
}

.btn-primary:disabled, .btn-primary.disabled {
  background-color: #fbc7a3;
  border-color: #fbc7a3;
}

.btn-danger {
  background-color: #ff5252;
  border-color: #ff5252;
}

.btn-danger:disabled, .btn-danger.disabled {
  background-color: #ff5252;
  border-color: #ff5252;
}

.btn-secondary {
  background-color: #d3d6db;
  border-color: #d3d6db;
  color: #030616;
}

.btn-secondary:hover {
  background-color: #5b5b5f;
  border-color: #5b5b5f;
  color: #ffffff;
}

.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  background-color: #5b5b5f;
  border-color: #5b5b5f;
  color: #ffffff;
}

.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  background-color: #5b5b5f;
  border-color: #5b5b5f;
  color: #ffffff;
}

.btn-secondary:disabled, .btn-secondary.disabled {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
  color: #15181f;
}

.bg-danger {
  background-color: #ff5252 !important;
}

.text-danger {
  color: #ff5252 !important;
}

.text-primary {
  color: #375e77 !important;
}

.select2-container {
  min-height: 34px;
  border-color: #dee2e6;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #dee2e6;
}

.select2-container.is-invalid .select2-selection {
  border-color: var(--bs-form-invalid-border-color) !important;
}

/* Cambios Datatables.net */
.dt-paging-button {
  padding: 0px 0px 0px 0px !important;
}

.dt-length label {
  margin-right: 5px;
}

div.dt-container .dt-paging .dt-paging-button:hover {
  color: white !important;
  background: none;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: 600 !important;
  font-size: 1.2em;
}

table.table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px #699CC6;
}

table.table.dataTable > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #699CC6 !important;
}

table.table.dataTable > tbody > tr.selected a {
  color: white;
}

/* DataTables — processing con logo en lugar de puntos */
div.dt-processing {
  background-color: #030616 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 1rem !important;
  border-radius: 8px !important;
}

div.dt-processing > div:first-child {
  display: flex;
  justify-content: center;
}

div.dt-processing > div:last-child {
  display: none !important;
}

tr.acceso-fila-padre > td {
  background-color: #f8f9fa !important;
}

tr.acceso-fila-padre:not(:first-child) > td {
  border-top: 2px solid #adb5bd !important;
}

/* FIN Cambios Datatables.net */
/* SweetAlert2 — botón Confirmar siempre en naranja corporativo */
.swal2-styled.swal2-confirm {
  background-color: #FB8332 !important;
  border-color: #FB8332 !important;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 0.25rem rgba(251, 131, 50, 0.25) !important;
}

/* Cambios fontawesome */
.fa-2x {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em;
  text-align: center;
  width: 1.25em;
}

/* DESCARTADOS */
/*body {
        header {
        background-color: $menuColorFondo;
        color: $menuColorTexto;
        padding-right: 20px;
        padding-left: 50px;
        height: $header-height;

        select {
            background-color: $menuColorFondo !important;
            color: $menuColorTexto !important;
            border: 0 !important;
        }

        a {
            color: $menuColorTexto;
        }
    }
    @media (max-width: $sizeSM) {
        header {
            padding-left: 0px;
        }
    }
    footer {
        background-color: $menuColorFondo;
        color: $menuColorTexto;
        padding: 40px;

        .logoFooter {
            margin: 20px;
        }

        .descripcion {
            color: $colorGrisMedio;
        }

        .subfooter {
            color: $colorGrisMedio;
        }

        a {
            color: $menuColorTexto;
            text-decoration: underline;
        }
    }
}*/
/*// mensajes
#messages-wrap {
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: $zIndexLoader;*/
/*background-color: $loaderColorBackground;*/
/*opacity: 1;
    transition: none;
    justify-content: center;
    display: flex;

    #messages {
        background-color: $messageResultColorBackground;
        color: $messageResultColorText;
        padding: 20px;
        border-radius: 10px;
        position: fixed;
        top: 40%;
        vertical-align: middle;
        z-index: $zIndexMessages;
        min-width: 400px;
        word-break: break-word;
        border: 1px solid #15181f;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 200px;
        text-align: center;
        max-width: 400px;
        max-height: 400px;

        .text {
            margin-top: 110px;
            padding: 10px;
            overflow-y: auto;
            overflow-x: hidden;
            max-height: 250px;

            ul {
                li {
                    list-style: none;
                    margin-left: -40px;

                    .btn.btn-link {
                        text-align: start;
                        padding: 5px;
                        line-height: 1.4em;
                        text-decoration-thickness: from-font;
                    }
                }
            }
        }


        &.success {
            border-color: $colorSuccess;
        }

        &.success::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" fill="%2327ae60" class="bi bi-check-circle-fill" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            content: "";
            left: 10px;
            position: absolute;
            width: 100%;
            height: 80px;
            top: 25px;
        }

        &.error {
            border-color: $colorError;
        }

        &.error::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" fill="%23e74c3c" class="bi bi-x-circle-fill" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            content: "";
            left: 10px;
            position: absolute;
            width: 100%;
            height: 80px;
            top: 25px;
        }

        &.info {
            top: 40%;
            max-width: 500px;
            max-height: 500px;

            .text {
                margin-top: 20px;
                padding: 0;
                overflow: unset;
                text-align: left;
            }
        }

        &.confirm {
            border-color: $colorAviso;
        }

        &.confirm::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" fill="%23e67e22" class="bi bi-exclamation-circle-fill" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            content: "";
            left: 10px;
            position: absolute;
            width: 100%;
            height: 80px;
            top: 25px;
        }

        .close {
            cursor: pointer;
            text-align: end;
            padding: 5px;
            text-decoration: none;
            position: absolute;
            top: 5px;
            right: 15px;
        }
    }
}*/
/* botones */
/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none !important;
}

.btn.btn-round {
    border-radius: 25px;
    background-color: $colorFondoBoton;
    color: $colorTextoBoton;
    padding: 5px 22px;
}

.btn.tipo1 {
    border-radius: 25px;
    border-color: $menuColorFondo;
    background-color: $menuColorFondo;
    color: $menuColorTexto;
    padding: 5px 22px;
    margin: 5px;
    width: auto;
}

.btn.tipo2 {
    border-radius: 5px;
    border-color: $colorFondoBoton;
    background-color: $colorTextoBoton;
    color: $colorFondoBoton;
    padding: 10px 22px;
    margin: 5px;
    width: auto;
}

.btn.tipo3 {
    border-radius: 25px;
    border-color: $colorFondoBoton;
    background-color: $colorTextoBoton;
    color: $colorFondoBoton;
    padding: 10px 22px;
    margin: 5px;
    width: auto;
    font-weight: 700;
}

.contador {
    padding: 0 10px;
    font-size: 21px;
}

.newImage {
    height: 27px;
    border-bottom: 1px solid $colorAviso;
    color: $colorAviso;
}

.danger {
    color: $colorError;
}*/
/* bootstrap */
/*.accordion-item {
    border: 0;
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);

    .accordion-button:not(.collapsed) {
        background-color: inherit;
        box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    }

    .accordion-button:focus {
        z-index: 3;
        outline: 0;
        box-shadow: none;
        color: $colorFondoBoton;
    }

    .accordion-button:hover {
        color: $colorFondoBoton;
    }

    .accordion-button::after {
        background-image: url("../lib/bootstrap-icons/icons/plus.svg");
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("../lib/bootstrap-icons/icons/dash.svg");
    }
}

.accordion-item:last-of-type {
    border-radius: 0;
}

.alert.aviso {
    display: flex;
    align-items: start;
    gap: 10px;

    .icono {
        width: 40px;

        svg {
            width: 40px;
            height: 25px;
        }
    }

    .texto {
        flex-grow: 1;
        font-size: 14px;
        padding-top: 5px;
    }
}*/
/* tablas */
/*.actionTableIcon {
    padding: 5px 10px;
}
*/
/* otros */
/*.iconoGrande {
    font-size: 1.2rem;
}
*/
