#floating-button {

    position: fixed;
    right: 0;
    z-index: 500;
    bottom: 80px;
}

.telegram-btn {

    animation: blinks 2s infinite;
    border-radius: 3px;
    color: #fff;
    background-color: #0088cc;
    border-color: #0088cc;
    padding:3px 10px;
    
}

.telegram-btn-content-text {

    font-size: 12px;
    line-height: 18px;

}

.telegram-btn-content-icon {

    font-size: 18px;

}

@keyframes blinks {

    from {background-color: #00adccea;}
    to {background-color: #0088cc;}

}

@media(min-width:1251px) {
    .telegram-btn {

        padding:8px 18px;
        
    }

    .telegram-btn-content-text {
        font-size: 18px;
    }

    .telegram-btn-content-icon {

        font-size: 20px;
    
    }
}