.tool-item-label-container {
    line-height: 16px;
    padding: 0px 12px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    .tool-item-label {
        color: #6B7175;
    }
    &.fixed {
        width: 56px;
        position: relative;
        &:before {
            border: 0;
            content: '';
            position: absolute;
            top: -50%;
            bottom: -50%;
            left: -50%;
            right: -50%;
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
            border-style: solid;
            border-left-width: 1px;
            border-color: #E6E7E8;
        }
        .tool-item-label-icon {
            margin-right: 4px;
            font-size: 14px;
            line-height: 1;
            color: #9DA1A3;
        }
    }

    &.flex {
        width: 100%;
        box-sizing: border-box;
        padding-bottom: 0px;
        vertical-align: sub;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-align: center;
        color: #6B7175;
        vertical-align: middle;
        .tool-item-label {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            text-align: center;
            vertical-align: middle;
            background-image: url('./tool-trangle.svg');
            background-repeat: no-repeat;
            background-position: right center;
            background-size: 8px 10px;
            padding-right: 12px;
            max-width: 100%;
            box-sizing: border-box;
        }
        &.highlight {
            .tool-item-label {
                background-image: url('./active-tool-trangle.svg');
            }
        }
    }

    &.highlight {
        .tool-item-label-icon {
            color: #1695F0;
        }

        .tool-item-label {
            color: #1E80C7;
        }
    }
}
