/*
Theme Name: Metazen Child
Author: Metazen
Template: Metazen
Version: 1.0.0
Text Domain: Metazen
*/

@media (max-width: 569px){
 .btn:not(input), .btn-link:not(input) { transform: scale(1); }
}

.telegramcircle{
color: black;
    background: #c1e169 !important;
    border-radius: 2000px;
    height: 50px !important;
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 50px;
    width: 141px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.telegramcircle::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 3px solid #c1e169;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 7s infinite;
}


.telegramcircle2{
color: #ffffff;
    background: #1ebeee !important;
    border-radius: 40px;
    height: 50px !important;
    position: fixed;
    left: 15px;
    bottom: 15px;
    line-height: 50px;
    width: 200px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}


@keyframes ring {
  0% {
    width: 50px;
    height: 50px;
    opacity: 1;
  }
  25% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}