.tuner-floating-icons {
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    animation: bottom-top .5s;
}

.tuner-floating-icons ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tuner-floating-icons ul li {
    flex-grow: 1;
}

.tuner-floating-icons ul li a {
    padding: 1rem;
    color: #fff;

    display: flex;
    justify-content: center;
}

.tuner-floating-icons ul li a:hover svg {
    transform: scale(1.2);
}

.tuner-floating-icons svg {
    width: 24px;
    aspect-ratio: 1;
    transition: all .3s linear 0s;
}

.tuner-floating-icons span {
    display: none;
}

.tuner-floating-icons .back {
    background: rgb(0, 0, 0);
}

.tuner-floating-icons .phone {
    background: rgb(38 211 124);
}

.tuner-floating-icons .messenger {
    background: rgb(0 127 247);
}

.tuner-floating-icons .facebook {
    background: rgb(66 103 178);
}

.tuner-floating-icons .mail {
    background: rgb(220, 72, 60);
}

@keyframes bottom-top {
    from {
        bottom: -60px;
    }

    to {
        bottom: 0;
    }
}

@media (min-width: 768px) {

    .tuner-floating-icons {
        width: 60px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        animation: left-right .5s;
    }

    .tuner-floating-icons ul {
        flex-wrap: wrap;
    }

    @keyframes left-right {
        from {
            left: -60px;
        }

        to {
            left: 0;
        }
    }
}