body {
    background-color: whitesmoke;
}

.mol-container {
    width: 100%;
    height: 600px;
    position: relative;
} 

/* para la ayuda */    
.tooltipHelp {
  position: relative;
  background: white;
  cursor: help;
  display: inline-block;
  text-decoration: none;
  color: #222;
  outline: none;
}

.tooltipHelp span {
  visibility: hidden;
  position: absolute; 
  bottom: 30px;
  left: 50%;
  z-index: 999;
  width: 300px;
  margin-left: -140px;
  padding: 10px;
  border: 2px solid #ccc;
  opacity: 1;
  background-color: #ddd;
  background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}

.tooltipHelp:hover {
  border: 0; /* IE6 fix */
}

.tooltipHelp:hover span {
  visibility: visible;
}

.tooltipHelp span:before,
.tooltipHelp span:after {
  content: "";
  position: absolute;
  z-index: 1000;
  bottom: -7px;
  left: 50%;
  margin-left: -8px;  
  border-top: 8px solid #ddd;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;        
  border-bottom: 0;  
}

.tooltipHelp span:before {
  border-top-color: #ccc;
  bottom: -8px;
}

/* When collapsed: show the 'plus' icon and hide the 'minus' icon */
.collapsed .bi-dash-circle { display: none; }
.collapsed .bi-plus-circle { display: inline-block; }

/* When expanded (not collapsed): hide the 'plus' icon and show the 'minus' icon */
.btn:not(.collapsed) .bi-plus-circle { display: none; }
.btn:not(.collapsed) .bi-dash-circle { display: inline-block; }

