.tooltip-trigger {
    position: relative;
    top: 4px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    border-radius: 30px;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    width: 140px;
    overflow: hidden;

    &.v2 {
        width: 22px !important;
        overflow: initial;
        height: 10px;
        margin-left: 4px;

        &::after {
            content: "";
            width: 22px;
            height: 22px;
            background: transparent;
            position: absolute;
            top: -6px;
            left: 0;
            transition: 0.2s;
            border-radius: 100%;
        }

        &:hover {
            background: transparent;

            &::after {
                background: var(--TooltipBG);
            }

            .tooltip-help {
                width: auto;
                opacity: 1;
                visibility: visible;
            }
        }

        &.active {
            .tooltip-trigger_bg {
                fill: var(--TooltipBG);
            }
        }

        .text {
            width: auto;
            position: absolute;
            left: 50%;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%);
            top: -28px;
            padding: 3px 5px !important;
            background: var(--TooltipBG);
            box-shadow: 0px 4px 10px rgba(58, 58, 58, 0.15);
            border-radius: 4px;
            z-index: 2;
        }
    }

    @media screen and (max-width: 991px) {
        background: var(--TooltipBG);

        .tooltip-help {
            width: 120px !important;
            padding: 0 5px;
        }
    }

    &:hover {
        background: var(--TooltipBG);
        width: 140px;

        .tooltip-help {
            width: 120px;
            padding: 0 5px;
        }
    }

    &.active {
        background: #fff;

        .tooltip-trigger_bg {
            fill: var(--TooltipBG);
        }

        &:hover {
            background: var(--TooltipBG);
            width: 140px;
        }

        @media screen and (max-width:768px) {
            background: var(--TooltipBG);
        }
    }

    .text {
        font-size: 12px !important;
        letter-spacing: -0.363636px !important;
        line-height: 1 !important;
        font-weight: normal !important;
        white-space: nowrap;
        width: 0px;
        transition: .2s;
        overflow: hidden;
        color: var(--Main1) !important;
        z-index: 1;
    }

    svg {
        min-width: 16px;
        width: 16px;
        height: 16px;
        z-index: 2;
    }
}

.custom-tooltip-content-block {
    border-radius: 4px;
    font-size: 12px;
    line-height: 140%;
    padding: 8px 16px;
    margin-bottom: 8px;
    background: var(--TooltipBG);
    overflow: hidden;
    font-weight: normal;
    color: var(--Main1);

    @media screen and (max-width: 567px) {
        padding: 8px 10px;
    }
}