.bashka {
    background-color: #22253e;
    text-align: center;
    padding: 10px;
    margin-right: 16px;
    border-radius: 5px;
}
.tooltip-three {
    /* position: absolute; */
    /* width: 9.5%; */
    display: flex;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.tooltip-three .tooltip-textcover {
    width: auto;
    background-color: rgb(0 0 0 / .5);
    color: #fff;
    text-align: center;
    font-size: 10px;
    padding: 6px 6px;
    border-radius: 6px;
    position: absolute;
    margin-top: -30px;
    z-index: 1;
    opacity: 0;
    transition: .15s;
}

.tooltip-three:hover .tooltip-textcover {
    opacity: 1;
    margin-top: -60px;
    transition: .15s;
}