   .autoink {
    position: relative;
    overflow: hidden;
    border-radius:10px;
}

.autoink::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s linear infinite;
    pointer-events: none; /* Отключаем события указателя для псевдоэлемента */
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}


.t-redactor__tte-view .t-redactor__text a {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 30px;
    padding:20px 30px; /*Отступы внутри кнопки*/
    border-radius: 30px; /*Скругление углов у кнопки*/
    background-color: #279FF8;; /*Цвет фона кнопки*/
    color: #fff !important; /*Цвет текста кнопки*/
    font-size: 16px; /*Размер текста*/
    font-weight: 600; /*Толщина текста*/
    transition: 0.3s ease-in; /*Плавность анимации при наведении на кнопку*/
}

.t-redactor__tte-view .t-redactor__text a:hover{
    background-color: #1488DF; /*Цвет фона при наведении*/
    color: #fff !important; /*Цвет текста при наведении*/
}
