#connect-buttons {
    position: fixed;
    bottom: 75px;
    right: 0px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#main-button {
    background-color: #7e8e7e;
    border: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.icon-slider {
    display: flex;
    position: absolute;
    animation: slideIcons 4s linear infinite;
}
.icon-slider img {
    margin-left:15px;
    margin-right:15px;
}

/* Слайдинг анимация */
@keyframes slideIcons {
    0% {
        left: 0;
    }
    20% {
        left: 0;
    }
    25% {
        left: -60px;
    }
    45% {
        left: -60px;
    }
    50% {
        left: -120px;
    }
    70% {
        left: -120px;
    }
    75% {
        left: -180px;
    }
    95% {
        left: -180px;
    }
    100% {
        left: 0;
    }
}

#social-icons {
    display: none;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    background-color: #7e8e7e;
    border-radius: 0;
}

#social-icons a, #social-icons button {
    margin-bottom: 10px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

#social-icons img {
    width: 30px;
    height: 30px;
}