#stc-telegram-button {
    position: fixed;
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    width: 60px;
    height: auto;
}

.stc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 5px;

    transition: transform 0.3s ease;
}

.stc-bubble {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0088cc;
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    font-family: inherit;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);

    transition: transform 0.3s ease;
}

.stc-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0088cc;
}

.stc-animation-scale:hover .stc-icon {
    transform: scale(1.1);
}
.stc-animation-scale:hover .stc-bubble {

    transform: scale(1.1) translateX(-50%);
}


@keyframes stc-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@keyframes stc-pulse-bubble {
    0% { transform: scale(1) translateX(-50%); }
    50% { transform: scale(1.1) translateX(-50%); }
    100% { transform: scale(1) translateX(-50%); }
}
.stc-animation-pulse:hover .stc-icon {
    animation: stc-pulse 1.2s infinite ease-in-out;
}
.stc-animation-pulse:hover .stc-bubble {
    animation: stc-pulse-bubble 1.2s infinite ease-in-out;
}


@keyframes stc-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.stc-animation-bounce:hover {
    animation: stc-bounce 1s;
}