.wd-sticky-social {
    position: fixed;
    top: 50%;
    z-index: 390;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 1s
}

.wd-sticky-social .wd-social-icon {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    margin: 1px;
    min-width: 35px;
    width: auto;
    height: 35px;
    border-radius: 50%
}

.wd-sticky-social .wd-social-icon:hover {
    box-shadow: none
}

.wd-sticky-social .wd-social-icon:hover .wd-icon-name {
    max-width: 220px
}

.wd-sticky-social .wd-icon {
    width: 35px;
    font-size: 14px;
    line-height: 35px
}

.wd-sticky-social .wd-icon-name {
    overflow: hidden;
    padding: 0;
    max-width: 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    transition: padding 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), max-width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15)
}

.wd-sticky-social.buttons-loaded {
    transform: translate3d(0, -50%, 0)
}

.wd-sticky-social-right {
    right: 0;
    transform: translate3d(100%, -50%, 0);
    align-items: flex-end
}

.wd-sticky-social-right .wd-social-icon {
    flex-direction: row-reverse
}

.wd-sticky-social-right .wd-social-icon:hover .wd-icon-name {
    padding-left: 15px
}

.wd-sticky-social-left {
    left: 0;
    transform: translate3d(-100%, -50%, 0);
    align-items: flex-start
}

.wd-sticky-social-left .wd-social-icon {
    flex-direction: row
}

.wd-sticky-social-left .wd-social-icon:hover .wd-icon-name {
    padding-right: 15px
}

@media (max-width: 1024px) {
    .wd-sticky-social {
        display: none
    }
}