.tooltipnotallowed {
    position: relative;
    display: table-cell;
}

.tooltipnotallowed .tooltipnotallowedtext {
    visibility: hidden;
    width: 800px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;    
}

.tooltipnotallowed:hover .tooltipnotallowedtext {
    visibility: visible;
}