.company-heading {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    column-gap: 6px;
}

.company-name {
    flex: 0 1 auto;
    min-width: 0;

}

.company-name h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blue-mark {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background: url(/img/common/blue-mark-icon.svg) no-repeat;
    display: inline-block;
    position: relative;
    margin-bottom: -2px;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.plan-id-gold {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background: url(/img/common/gold-plan-icon.svg) no-repeat;
    display: inline-block;
    position: relative;
    margin-bottom: -1px;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.plan-tooltip {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: rgba(50, 50, 50, .96);
    padding: 7px 14px;
    border-radius: 3px;
    z-index: 100;
    visibility: hidden;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 160%;
    opacity: 0;
    transition: visibility .3s, opacity .3s ease-in-out;
    white-space: nowrap;
}

.plan-tooltip::after {
    content: '';
    border: 5px solid transparent;
    border-top: 5px solid rgba(50, 50, 50, .96);
    background: 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
}

*:hover > .plan-tooltip {
    visibility: visible;
    opacity: 1;
}