.chat-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.chat-links__btn {
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    overflow: hidden;
}

.chat-links__btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 10;
    transition: .3s;
    background: #000;
    opacity: 0;
    border-radius: 30px;
}

.chat-links__btn:hover::before {
    opacity: .15;
}

.chat-links__btn-icon {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 20;
}

.chat-links__btn-title {
    position: relative;
    color: #fff;
    font-weight: 600;
    z-index: 20;
}

.title-contact.title-contact--chat-links .title-contact__phone{
    margin-right: 16px;
}

.title-contact .chat-links {
    gap: 16px;
}

.title-contact .chat-links__btn,
.page-title .chat-links__btn {
    height: 51px;
    width: 196px;
    border-radius: 30px;
    gap: 12px;
}

.title-contact .chat-links__btn-icon,
.page-title .chat-links__btn-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.page-title .chat-links {
    gap: 16px;
    margin-bottom: -51px;
}

.footer .chat-links__btn {
    height: 33px;
    width: 118px;
    border-radius: 30px;
    gap: 12px;
}

.footer .chat-links__btn-title {
    font-size: 10px;
}

.footer .chat-links__btn-icon {
    width: 20px;
    height: 20px;
}

.notif.notif-phone-open.notif--chat-links {
    width: 300px;
}

@media (max-width: 768px) {

    .index-page__contact-info--chat-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .page-title .chat-links {
        justify-content: flex-start;
        margin-bottom: 33px;
    }

    .page-title .chat-links__btn,
    .chat-links__btn {
        height: 33px;
        width: 118px;
        border-radius: 30px;
        gap: 12px;
    }

    .chat-links__btn-title {
        font-size: 10px;
    }

    .fixed-popup .chat-links__btn {
        height: 39px;
        width: 39px;
        -webkit-box-shadow:5px 5px 10px rgba(0,0,0,.161);
        box-shadow:5px 5px 10px rgba(0,0,0,.161);
    }

    .page-title .chat-links__btn-icon,
    .fixed-popup .chat-links__btn-icon,
    .chat-links__btn-icon {
        width: 20px;
        height: 20px;
    }
}