.tooltip-widget__inner {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #202a4c;
    color: #191b1f;
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 15px;
    width: 570px;
    bottom: 40px;
    left: unset;
    right: -190px;
    z-index: 1;
    text-align: start;
}

.tooltip-widget {
    position: relative;
    width: 20px;
    height: 20px;
}

.tooltip-widget__inner::before {
    content: '';
    background: url("data:image/svg+xml,%3Csvg width='12' height='19' viewBox='0 0 12 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-4.5897e-07 9.5L11.25 0.406734L11.25 18.5933L-4.5897e-07 9.5Z' fill='%23202A4C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 19px;
    position: absolute;
    bottom: -12px; /* Відступ вниз */
    right: 192px;
    transform: rotate(-90deg);
}
.tooltip-widget__heading {
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #FFF;
    margin: 0 0 30px 0;
}

.tooltip-widget__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #c3c7d7;
    margin: 0;
}

.tooltip-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 18px;
    right: -20px;
}

.tooltip-icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.tooltip-icon:hover {

}

.tooltip-icon:hover > .tooltip-widget .tooltip-widget__inner{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media screen and (max-width: 1024.98px) {
    .tooltip-widget__inner {
        left: unset;
        right: -70px;
        width: 400px;
        padding: 20px;
    }

    .tooltip-icon svg,
    .tooltip-icon {
        width: 20px;
        height: 20px;
    }

    .tooltip-icon {
        top: 10px;
        right: -25px;
    }

    .tooltip-widget__heading {
        font-size: 24px!important;
        margin: 0 0 10px 0;
    }

    .tooltip-widget__text {
        font-size: 16px!important;
    }

    .tooltip-widget__inner::before {
        right: 74px;
    }
}

@media screen and (max-width: 599.98px) {
    .tooltip-widget__inner {
        width: 320px;
    }
}
