.wd-social-icons {
    position: fixed;
    right: 23px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.wd-social-icons a {
    color: #fff;
    text-decoration: none !important;
    border-bottom: 0;
    display: block;
    margin: 20px 0;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0, 0);
    background: transparent;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    text-align: center;
    line-height: 53px;
    font-size: 35px;
}

.whatsapp-button {
    background: #25D366;
}
.tg-button {
    background: #37aee2;
}

.social-button:before,
.social-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid transparent;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}

.whatsapp-button:before,
.whatsapp-button:after {
    border: 1px solid #25D366;
}
.tg-button:before,
.tg-button:after {
    border: 1px solid #37aee2;
}

.social-button:after{
    animation-delay: .5s;
}
 
@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

.social-button svg {
    width: 30px;
    height: 30px;
    fill: #FFF;
}

/**/
.document__elem-text,
.files__elem-text{
    white-space: normal !important;
}