.tooltip__base {
    position: absolute;
    top: 14%;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
}

.tooltip__content {
    color: #4a4a4a;
    position: relative;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 0.85em;
    width: 85%;
    padding:30px
}

.tooltip__shape {
    position: absolute;
    fill: #595757cf;
    width: 280px;
    height: 200px;
}


.quantityValForTooltip:hover{
    transition: 0.7s;
    border-radius: 5px;
    font-weight: bold;
    border: solid 1px white;
    cursor:pointer;
}

.quantityValForTooltip .quantityValItem{
    border-radius: 0 10px;
}