.messanger-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.messanger-chat-main {
    width: 60px;
    height: 60px;
    background: #01d019;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.messanger-chat-main:hover {
    transform: scale(1.05);
}

.messanger-chat-items {
    position: absolute;
    right: 0;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s;
}

.messanger-chat-widget.active .messanger-chat-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.messanger-chat-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s;
    flex-shrink: 0;
}

.messanger-chat-item:hover {
    transform: scale(1.1);
}

.messanger-chat-item.phone {
    background: #27ae60;
}

.messanger-chat-item.vk,
.messanger-chat-item.max {
    background: transparent;
}

.messanger-chat-main svg {
    width: 26px;
    height: 26px;
    display: block;
}

.messanger-chat-item.phone svg {
    width: 24px;
    height: 24px;
    display: block;
}

.messanger-chat-item.vk svg,
.messanger-chat-item.max svg {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    display: block;
    flex-shrink: 0;
}

.messanger-chat-item.vk svg[width],
.messanger-chat-item.vk svg[height],
.messanger-chat-item.max svg[width],
.messanger-chat-item.max svg[height] {
    width: 50px !important;
    height: 50px !important;
}

@media (max-width: 767px) {
    .messanger-chat-widget {
        right: 15px;
        bottom: 15px;
    }

    .messanger-chat-main {
        width: 56px;
        height: 56px;
    }

    .messanger-chat-item {
        width: 46px;
        height: 46px;
    }

    .messanger-chat-item.vk svg,
    .messanger-chat-item.max svg {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px;
        min-height: 46px;
        max-width: 46px;
        max-height: 46px;
    }
}