.fixed-side-navbar {
    position: fixed;
    top: 260px;
    right: 10px;
    z-index: 9000;
    text-align: right;
    -webkit-transition: all .3s;
    transition: all .3s;
}

    .fixed-side-navbar .nav > li a {
        color: black;
        min-height: 32px;
        background: transparent;
        border-right: none;
    }

    .fixed-side-navbar .nav > li.active a {
        background-color: transparent;
        color: black;
    }
    .fixed-side-navbar .nav > li a span {
        display: none;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

   


    .fixed-side-navbar .nav > li a:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        border: 1px solid #fff;
        background: #494C4F;
        -webkit-transition: all .3s;
        transition: all .3s;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }

    .fixed-side-navbar .nav > li.active a:after {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    .fixed-side-navbar .nav > li.active a:before {
        content: '';
        position: absolute;
        top: 39%;
        right: 12px;
        margin-top: -8px;
        width: 30px;
        height: 30px;
        background: #9B9B9B;
        border: 2px solid white;
        border-radius: 50%
    }


    .SocialNavBar a i {
        content: '';
        margin-top: -3px;
        width: 53px;
        height: 53px;
        border-radius: 50px;
        border: 3px solid #fff;
        background: #494C4F;
        -webkit-transition: all .3s;
        transition: all .3s;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        font-size: 30px;
        line-height: 30px;
        padding: 10px;
        vertical-align: middle;
        color: #494C4F;
        background: white;
    }

        .SocialNavBar a i.fb {
            padding-right: 17px;
        }
