#cdp-button {
    display: flex;
    position: fixed;
    bottom: 25px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 2px 2px 12px rgba(22, 124, 60, .2);
    transition: .4s;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}

#cdp-button.whatsapp {
    background: rgba(37, 211, 102, 1);
}

#cdp-button.whatsapp:hover {
    background: #21bd5c;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, .4)
}

#cdp-button.telegram {
    background: rgba(0, 136, 204, 1);
}

#cdp-button.telegram:hover {
    background: rgba(0, 108, 162, 1);;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, .4)
}

#cdp-button.whatsapp.pulse {
    animation: cdp-whatsapp-pulse 2s infinite;
}

@keyframes cdp-whatsapp-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#cdp-button.telegram.pulse {
    animation: cdp-telegram-pulse 2s infinite;
}

@keyframes cdp-telegram-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#cdp-button.left {
    left: 25px
}

#cdp-button.center {
    margin: auto;
    left: 0;
    right: 0;
}

#cdp-button:not(.left):not(.center) {
    right: 25px
}

#cdp-button > img {
    display: block;
    width: 34px;
    height: 34px;
    margin: auto
}
