::ng-deep .mat-tooltip.tooltip--adjust-position {
    margin-top: 4px;
}

.mat-tooltip-trigger {
    cursor: pointer;
}

/* Tooltip custom (no material) */
.tooltip {
    position: relative;
}

/* Tooltip text */
.tooltip+ .tooltip__content {
    /* Position the tooltip text */
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    /* Fade in tooltip */

    opacity: 0;
    visibility: hidden;
    border-radius: 6px;
    width: auto;
    padding: $spacing-m;
    transition: opacity .3s;

    background-color: $neutral-40;

    text-align: left;

    p,
    span {
        color: #fff;

        white-space: nowrap;
    }

    p {
        display: flex;

        span {
            margin-left: $spacing-m;
        }
    }
}

/*
.tooltip+ .tooltip__content::after {
    position: absolute;
    top: -10px;
    left: 50%;

    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;

    content: "";
} */

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover+ .tooltip__content {
    opacity: 1;
    visibility: visible;
}