.telegram-button {
    z-index: 9999;
    display: block;
    width: 65px;
    height: 65px;
    background-color: #0088cc;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-image: url('../img/tg-ico.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;

}

/*.telegram-button:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.35);*/
/*}*/


.pulsating-circle {
    width: 65px;
    height: 65px;
    background-color: #00afe9;
    border-radius: 50%;
    position: fixed;
    bottom: 180px;
    right: 75px;
    animation: pulse-main 2s infinite ease-in-out;
    z-index: 1000;
}

.pulsating-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #007bff;
    border-radius: 50%;
    animation: pulse-out 2s infinite ease-in-out;
    z-index: -1;
}


@keyframes pulse-main {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


@keyframes pulse-out {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}