/* Estilos del menú inferior */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255);
    padding: 10px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
  }
  .bottom-nav .nav-link {
    color: #141821bf;
    text-align: center;
    padding: 0;
    font-size: 24px; /* Tamaño de los íconos */
  }
  .bottom-nav .nav-item {
    flex: 1; /* Espacio igual para cada ítem */
    display: flex;
    flex-direction: column; /* Coloca el ícono y el texto en columna */
    align-items: center;
  }
  .bottom-nav .nav-link small {
    font-size: 12px; /* Tamaño del texto */
    margin-top: 5px;
    display: block;
  }
  /* Ampliar el menú inferior */
  .bottom-nav .nav {
    padding: 0 40px;
  }

  .lato {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
  }

  .lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 13px;
  }

  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
  }

  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
  }

  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }

  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }

  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }

  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

  .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  .moved {
    transform: translateY(-165px); /* Mueve el div hacia arriba */
  }

  .moved-extended-menu-col-1 {
    transform: translateY(0px); /* Mueve el div hacia arriba */
  }

  .moved-extended-menu-col-2 {
    transform: translateY(80px); /* Mueve el div hacia arriba */
  }

  .moved-extended-menu-col-3 {
    transform: translateY(163px); /* Mueve el div hacia arriba */
  }

  .moved-extended-menu2 {
    transform: translateY(-1px); /* Mueve el div hacia arriba */
  }

  .show-page-modal {
    transform: translateY(-330px);
  }

  .simplebar-content {
    padding: 18px !important; /* Sobrescribe el padding por defecto */
  }

  /* Desactiva SimpleBar para el dropdown de Choices.js */
  .simplebar-content .choices__list--dropdown {
    overflow: visible !important;
    max-height: none !important;
  }

  .choices__list--dropdown {
    max-height: 200px;  /* Ajusta según tus necesidades */
    overflow-y: auto;   /* Activa el scroll solo dentro del dropdown */
  }