.floating-social {
    bottom: 12%;
    cursor: pointer;
    position: fixed;
    right: 28px;
    z-index: 10
}

.floating-social .floating-social_button {
    align-items: center;
    background: #ce1818;
    border-radius: 50%;
    box-shadow: 0 6px 20px #0003;
    color: #fff;
    display: flex;
    height: 50px;
    justify-content: center;
    transition: all .3s ease-in-out;
    width: 50px
}

.floating-social.is-show .floating-social_list {
    opacity: 1;
    transform: scale(1)
}

.floating-social .floating-social_list {
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: scale(0);
    transform-origin: 50% bottom;
    transition: all .3s ease-in-out
}

.floating-social .floating-social_list .floating-social_list__item.floating-social_facebook {
    background: #1773ea
}

.floating-social .floating-social_list .floating-social_list__item.floating-social_telegram {
    background: #08c
}

.floating-social .floating-social_list .floating-social_list__item.floating-social_zalo {
    background: #217cfe
}

.floating-social .floating-social_list .floating-social_list__item {
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 6px 20px #0003;
    color: #fff;
    display: flex;
    font-size: 2em;
    height: 50px;
    justify-content: center;
    width: 50px
}