.social-button {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 99;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.main-button {
    background-color: var(--tp-heading-secondary);
    color: white;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
}

.main-button:hover {
    opacity: 1;
}

.social-menu {
    display: flex;
    position: fixed;
    bottom: 90px;
    right: 50px;
    flex-direction: column;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-menu.show {
    opacity: 1;
    transform: scale(1);
}

.social-item {
    background-color: #007bff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    border-radius: 100%;
    text-align: center;
    height: 50px;
    width: 50px;
    transition: background-color 0.3s;
}

.social-item:hover, .social-item:focus, .social-item:active {
    color: #fff;
    outline: none;
}

.social-item:hover {
    background-color: #0056b3;
}

.instagram {
    background-color: #e1306c;
}

.instagram:hover {
    background-color: #c92a5b;
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #1ebe57;
}

.telegram {
    background-color: #0088cc;
}

.telegram:hover {
    background-color: #007bb5;
}