/* ---------- GENERAL ---------- */
#right-sidebar a { text-decoration: none; }
#right-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* ---------- Sidebar ---------- */
#right-sidebar {
    right: -2px;
    position: fixed;
    top: 100px;
    z-index: 900;
}
#right-sidebar ul li a { 
    border-radius: 10px 0px 0px 10px; 
    border: 2px solid rgba(0,0,0,0.3);
    box-shadow: 0px 0px 10px rgba(0,0,0,.4)
}
#right-sidebar ul li a {
    background: #fff;
    color: #333;
    display: block;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    margin-bottom: 10px;
}
#right-sidebar ul li a.active span,
#right-sidebar ul li a:hover span {
    right: 150%;
    opacity: 1;
    white-space: nowrap;
    transition: 0.5s;
    width: 120px;
    color: white;
}
#right-sidebar ul li a span {
    border-radius: 3px;
    font-size: 14px;
    line-height: 24px;
    /* left: -100%; */
    margin-top: -16px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    padding: 4px 8px;
    position: absolute;
    /* -webkit-transition: opacity .3s, left .4s;
    -moz-transition: opacity .3s, left .4s;
    -ms-transition: opacity .3s, left .4s;
    -o-transition: opacity .3s, left .4s;
    transition: opacity .3s, left .4s; */
    top: 50%;
    z-index: -1;
    width: 100px;
}
#right-sidebar ul li a span:before {
    content: "";
    display: block;
    height: 8px;
    right: -4px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    z-index: -2;
}
#right-sidebar ul li a:hover,
#right-sidebar ul li a span,
#right-sidebar ul li a.active,
#right-sidebar ul li a span:before { background: #AA0000; }
