/* Tooltip container */
.action-tooltip {
    display: inline-block;
    position: relative;
}

/* Tooltip text */
.action-tooltip .tooltiptext {
    visibility: hidden;
    color: #fff;
    background-color: #C4C4C4;
    text-align: center;
    border-radius: 2px;
    height: 16px;
    padding-right: 6px;
    padding-left: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    top: 120%;
    left: 0;
}

.action-tooltip i {
    height: 32px;
    width: 32px;
    background: #fff;
    border-radius: 16px;
    padding-top: 8px;
    text-align: center;
    cursor: pointer;
}

/* Show the tooltip text when you mouse over the tooltip container */
.action-tooltip:hover .tooltiptext {
    visibility: visible;
    white-space: nowrap;
    overflow: hidden;
}

.action-tooltip:hover .tooltiptext.detailed {
    visibility: visible;
    overflow: hidden;
}

.action-tooltip:hover .tooltiptext.detailed > .tip-title {
    font-weight: bold;
    display: block;
}

.action-tooltip:hover .tooltiptext.detailed {
    visibility: visible;
    overflow: hidden;
    height: inherit;
    width: 200px;
    white-space: normal;
    left: -80px;
}

.select2-results__option .action-tooltip:hover .tooltiptext.detailed {
    visibility: visible;
    overflow: hidden;
    height: inherit;
    width: 150px;
    white-space: normal;
    left: calc(100% + 10px);
    top: 10px;
}

.action-tooltip:hover i, .action-tooltip:hover b {
    visibility: visible;
    background: #C4C4C433;
    cursor: pointer;
}