.whatsAppWidget {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 99999;
    overflow: hidden;
    cursor: pointer;
    padding: 8px 5px 10px 11px;
    border-radius: 15px;
    background-color: #3DA249;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    width: 160px;
    height: 50px;
    visibility: hidden;
    animation-name: whatsAppWidget;
    animation-duration: 3s;
    animation-delay: 10s;
    animation-fill-mode: forwards;
}

.whatsAppWidget.tg {
    background-color: #54A5DF;
}

@keyframes whatsAppWidget {
    from {
    visibility: visible;
    right: -100%;}
    to {
    visibility: visible;
    right: 1em;}
}

.whatsAppWidget a {
    text-decoration: none;
    color: initial;
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    align-items: center;
}

.whatsapp_icon {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(/media/icons/whatsapp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.whatsAppWidget.tg .whatsapp_icon {
    background-image: url(/media/icons/telegram_widget.svg);
    width: 35px;
    height: 35px;
}

.whatsAppWidget a span {
    font-size: 12px;
    text-align: center;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsAppWidget a span b {
    font-size: 16px;
}