#telegram-callme {
    position: fixed;
    bottom: 40px; /* Adjust to stack with Viber/WhatsApp */
    right: 40px;
    width: 140px;
    height: 140px;
    cursor: pointer;
    z-index: 200000;
    opacity: .7;
}
#telegram-callme-main {
    background: #229ED9; /* Telegram blue */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: .86;
}
#telegram-callme:hover #telegram-callme-main {
    opacity: 1;
}
#telegram-callme:hover #telegram-callme-phone {
    animation: yoyo 1s infinite ease-in-out;
}
#telegram-callme-phone {
    cursor: pointer;
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
    position: absolute;
    background-image: url('/image/catalog/telegram_logo.svg');
    background-position: center center;
    background-repeat: no-repeat;
    /*background-size: 38px 38px;*/
    z-index: 999993;
    transform-origin: 50% 50% 0;
}

@keyframes circle-animation-1 {
  0%, 100% {
    transform: scale(.9);
    opacity: .3;
  }
  50% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes circle-animation-2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: .8;
  }
}

#telegram-callme-circle {
    border-color: #229ED9;
    border: 4px solid;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: 23px;
    animation: circle-animation-1 3.5s infinite ease-in-out;
    box-sizing: content-box;
}
#telegram-callme-circle-2 {
    border: 8px solid #ECEDEF;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    position: absolute;
    top: 19px;
    left: 19px;
    animation: circle-animation-2 3.5s infinite ease-in-out;
    box-sizing: content-box;
}

@media only screen and (max-width: 620px) {
    #telegram-callme-circle,
    #telegram-callme-circle-2,
    #telegram-callme:hover #telegram-callme-phone {
        animation: none;
    }
    #telegram-callme-circle,#telegram-callme-circle-2{
        display: none;
    }
    #telegram-callme {
        bottom: 4px;
        right: 4px;
        width: 100px;
        height: 100px;
    }
}

