.order-status-tooltip {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    font-size: 1.1em;
    font-style: normal;
    vertical-align: middle;
    color: #666;
}

.order-status-tooltip::before {
    content: attr(data-tip);
    position: absolute;
    z-index: 999;
    top: 2em;
    left: -10em;
    white-space: nowrap;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    font-size: 0.75em;
    background-color: #303030;
    color: white;
    display: none;
}

.order-status-tooltip:hover::before {
    display: block;
}

.order-status-tooltip::after {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
    font-family: Dashicons;
    text-indent: 0;
    font-weight: 400;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    content: "\f223";
    -webkit-font-smoothing: antialiased;
    cursor: help;
}