.detail-explore-main .tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.detail-explore-main .tooltip-text {
    display: none;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1;
}

.detail-explore-main .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.detail-explore-main .tooltip-text.show {
    display: block;
}