.item-element-wrap .tg {
        margin: 32.5px 0 0 0;
        display: flex;
        width: 260px;
        align-items: center;
    }

    .item-element-wrap .tg a {
        text-decoration: none;
    }

    .item-element-wrap .tg span#whpp-blck {
        color: var(--black, #000);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    .item-element-wrap .tg span#whpp-grey {
        color: var(--grey, #767676);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        display: block;
    }

    .item-element-wrap .tg div:nth-child(1) {
        width: 52px;
        justify-content: center;
        display: flex;
    }

    .tg-button {
        position: fixed;
        right: 13px;
        bottom: 90px;
        transform: translate(-50%, -50%);
        background: #27a7e7;
        /*цвет кнопки*/
        border-radius: 50%;
        width: 55px;
        /*ширина кнопки*/
        height: 55px;
        /*высота кнопки*/
        color: #fff;
        text-align: center;
        line-height: 53px;
        /*центровка иконки в кнопке*/
        font-size: 35px;
        /*размер иконки*/
        z-index: 1040;
        opacity: 0.3;
    }

    .tg-button:hover {
        opacity: 1;
    }

    .tg-button a {
        color: #fff;
    }

    .tg-button:before,
    .tg-button:after {
        content: " ";
        display: block;
        position: absolute;
        border: 1px solid #27a7e7;
        /*цвет анимированных волн от кнопки*/
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
        border-radius: 50%;
        animation: animate 1.5s linear infinite;
        opacity: 0;
        backface-visibility: hidden;
    }

    .tg-button:after {
        animation-delay: .5s;
    }

    @keyframes animate {
        0% {
            transform: scale(0.5);
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }