@-webkit-keyframes et_social_fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@-moz-keyframes et_social_fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@-o-keyframes et_social_fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes et_social_fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

.social_sidebar {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 999999;
    color: #fff;
    opacity: 1;
    -webkit-animation: et_social_fadeIn 1s 1 cubic-bezier(0.77,0,.175,1);
    -moz-animation: et_social_fadeIn 1s 1 cubic-bezier(0.77,0,.175,1);
    -o-animation: et_social_fadeIn 1s 1 cubic-bezier(0.77,0,.175,1);
    animation: et_social_fadeIn 1s 1 cubic-bezier(0.77,0,.175,1);
}
.social_sidebar ul.social_icons_container {
    list-style: none!important;
    margin: 0!important;
    padding: 0!important;

    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.social_sidebar ul.social_icons_container li {
    clear: both;
    float: right;

    position: relative;
    width: 40px;
    overflow: hidden;
    text-align: right;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    right: 0;
}
.social_sidebar ul.social_icons_container li:hover {
    width: 117px;
}
.social_sidebar ul.social_icons_container li:first-child {
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
}
.social_sidebar ul.social_icons_container li:last-child {
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-left-radius: 4px;
}
.social_sidebar ul.social_icons_container li:hover {
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-left-radius: 4px;
}
.social_sidebar ul.social_icons_container li.social_facebook {
    background-color: #3a579a;
}
.social_sidebar ul.social_icons_container li.social_facebook:hover {
    background-color: #314a83;
}
.social_sidebar ul.social_icons_container li.social_twitter {
    background-color: #00abf0;
}
.social_sidebar ul.social_icons_container li.social_twitter:hover {
    background-color: #0092cc;
}
.social_sidebar ul.social_icons_container li a {
    display: block;
    padding: 10px 0;
    float: left;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}
.social_sidebar ul.social_icons_container li a span {
    position: absolute;
    right: 42px;
    white-space: nowrap;
}
.social_sidebar ul.social_icons_container li a i {
    width: 40px;
    font-size: 17px;
    line-height: 17px;
    text-align: center;
}
.social_sidebar .social_hide_sidebar {
    float: right;
    margin: 8px 8px 0 0;
    clear: both;
    font-size: 20px;
    right: -1px;
    line-height: 22px;
    background: rgba(0,0,0,0.3);
    height: 24px;
    width: 24px;
    display: block;
    cursor: pointer;
    border-radius: 12px;
    opacity: 0;
    color: #fff;
    text-align: center;

    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.social_sidebar:hover .social_hide_sidebar {
    opacity: 1;
}

.social_hide_sidebar.social_hidden_sidebar {
    margin-right: 0 !important;
    border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0 6px 6px 0;
    opacity: 1;

    transform: rotate(180deg);
}

.social_sidebar.social_hidden_sidebar .social_icons_container {
    margin-right: -50px !important;
}
.social_sidebar.social_visible_sidebar .social_icons_container {
    margin-right: 0px !important;
}
