/** Socials */
.share-buttons-bar {
    white-space: nowrap;
}

.share-buttons-bar .share-button {
    position: relative;
    display: inline-block;
    height: 33px;
    padding-left: 20px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    text-align: left;
    vertical-align: top;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff !important;
}

.share-buttons-bar .share-button:not(:first-child) {
    margin-left: 10px;
}

.share-buttons-bar a.share-button {
    padding-top: 7px;
}

.share-buttons-bar a.share-button:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 7px;
    height: 17px;
    background-image: url("/i/sprite_social.png");
}

.share-buttons-bar .button-fb {
    width: 156px;
    background: #4C68B3;
}

.share-buttons-bar .button-fb:hover {
    background: #5778D1;
}

.share-buttons-bar .button-fb:before {
    width: 17px;
    background-position: 0px -26px;
}

.share-buttons-bar .button-tw {
    width: 138px;
    background: #00ABED;
}

.share-buttons-bar .button-tw:hover {
    background: #16BDFD;
}

.share-buttons-bar .button-tw:before {
    width: 18px;
    background-position: -18px -26px;
}

.share-buttons-bar .button-vk {
    width: 159px;
    background: #426B9A;
}

.share-buttons-bar .button-vk:hover {
    background: #4A7FBB;
}

.share-buttons-bar .button-vk:before {
    width: 20px;
    background-position: -38px -26px;
}

.share-buttons-bar .button-fb-native {
    width: 137px;
    padding-top: 6px;
    padding-left: 6px;
    text-align: center;
    background: #8597C8;
}

.share-buttons-bar .share-button .share-button-counter {
    position: absolute;
    right: 16px;
    opacity: 0;
    transition: opacity .2s;
}

.share-buttons-bar-small .share-button .share-button-text {
    display: none;
}

.share-buttons-bar-small .button-fb,
.share-buttons-bar-small .button-tw,
.share-buttons-bar-small .button-vk {
    width: 89px;
}

.share-buttons-bar-small .button-fb-native {
    width: 145px;
}

.share-buttons-bar .share-button .share-button-spinner {
    position: absolute;
    top: 9px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: url("/i/sprite_social.png") 0 -44px;
    -webkit-animation: share-loader 1s infinite steps(8) forwards;
    animation: share-loader 1s infinite steps(8) forwards;
    opacity: 1;
    transition: opacity .2s;
}

@-webkit-keyframes share-loader {
    0% {
        -webkit-transform: rotate(o);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes share-loader {
    0% {
        transform: rotate(o);
    }

    100% {
        transform: rotate(360deg);
    }
}