.socials-icons{
    position: fixed;
    right: 14px;
    bottom: 84px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
}

.socials-icons-menu{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px) scale(.96);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.socials-icons.is-open .socials-icons-menu{
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.socials-icons-link{
    min-width: 150px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 18px;
    background: linear-gradient(90deg, #27b75c, #1d994b);
    color: #fff;
    font-size: .88em;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px -16px rgba(0, 0, 0, .9);
    pointer-events: auto;
    transition: transform .18s ease, filter .18s ease;
}

.socials-icons-link:hover{
    color: #fff;
    text-decoration: none;
    filter: brightness(1.06);
    transform: translateX(-2px);
}

.socials-icons-link i{
    font-size: 1.05em;
    line-height: 1;
}

.socials-icons-toggle{
    width: 104px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0 solid transparent;
    border-radius: 8px;
    outline: none;
    background: linear-gradient(90deg, #27b75c, #1d994b);
    color: #fff;
    font-size: .78em;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    box-shadow: 0 12px 28px -18px rgba(0, 0, 0, .95);
    cursor: pointer;
    pointer-events: auto;
    transition: transform .18s ease, filter .18s ease;
}

.socials-icons-toggle:hover{
    filter: brightness(1.05);
}

.socials-icons-toggle:active{
    transform: scale(.97);
}

.socials-icons-toggle .bi-x-lg{
    display: none;
}

.socials-icons.is-open .socials-icons-toggle .bi-send{
    display: none;
}

.socials-icons.is-open .socials-icons-toggle .bi-x-lg{
    display: inline-block;
}

.socials-icons-toggle i{
    font-size: 1.05em;
}

@media (max-width: 480px){
    .socials-icons{
        right: 12px;
        bottom: 78px;
    }

    .socials-icons-link{
        min-width: 142px;
        min-height: 35px;
        padding: 8px 16px;
        font-size: .84em;
    }

    .socials-icons-toggle{
        width: 30px;
        min-height: 30px;
    }
}
