  /* .tooltip > .arrow {
      background-color: transparent;
  }

  .tooltip > .tooltip-inner {
      text-align: center;
      font-size: 14px;
      padding: 10px 15px;
      border-radius: 5px;
      color: black;
      background-color: white;
      box-shadow: 0 4px 10px 0 rgba(0,0,0,0.15);
  }

  .bs-tooltip-top,
  .bs-tooltip-right,
  .bs-tooltip-left,
  .bs-tooltip-bottom {
    background-color: transparent;
    opacity: 1!important;
  }

  .tooltip.bs-tooltip-top .arrow:before,
  .tooltip.bs-tooltip-bottom .arrow:before {
      border-top-color: white;
      border-right-color: transparent;
      border-bottom-color: white;
      border-left-color: transparent;
  }

  .tooltip.bs-tooltip-right .arrow:before,
  .tooltip.bs-tooltip-left .arrow:before{
      border-top-color: transparent;
      border-right-color: white;
      border-bottom-color: transparent;
      border-left-color: white;
  }

.tooltip {
  display: inline-block;
  position: relative;
  margin: 10px 20px;
  opacity: 1;
} */


/* Ocultar tooltips cuando el menú está desplegado */


/* Mostrar tooltips cuando el menú está colapsado */
/* .menu-items.collapsed [data-toggle="tooltip"] {
  display: inline-block; /* O el valor de display adecuado para tus tooltips */
}
