.tooltip-hover:hover .tooltip-texto {
    opacity: 1;
    visibility: visible;
}
.tooltip-hover {
    position: relative;
}
.tooltip-texto {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    background-color: var(--bgcolor1);
    color: white;
    padding: 0.3em;
    border-radius: 3px;
    top: -5px;
    font-size: 0.8em;
    transform: translateY(-100%);
    transition: all 0.2s ease;
    min-width: 100px;
    max-width: 250px;
    line-height: 1.5em;
}

.tooltip-texto:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid var(--bgcolor1);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    bottom: -5px;
}
.tooltip-texto.align-rigth {
    right: 0;
}

.tooltip-texto.align-rigth::after {
    right: 2px;
}
.tooltip-texto.align-left {
    left: 0;
}

.tooltip-texto.align-left::after {
    left: 2px;
}

  