#telegram-button-position {

    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.telegram-btn {

    animation: blinks 2s infinite;
    color: #fff;
    background-color: #0088cc;
    border-color: #0088cc;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0rem 1.5rem
}

.telegram-btn-content-text {
    color:white;
    line-height: 30px;
    font-size: 18px;

}

.telegram-btn-content-icon {
    color:white;
    font-size:20px;

}

@media (min-width: 1251px) {
    .telegram-btn-content-text {
        line-height: 34px;
        font-size: 20px;
    }
    
    .telegram-btn-content-icon {
        font-size:24px;
    }

    .telegram-btn {
        padding: 0rem 3rem
    }
    
}

@keyframes blinks {

    from {background-color: #00adccea;}
    to {background-color: #0088cc;}

}

