.hover-background-light-blue {
    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}
.hover-background-light-blue:hover {
    background-color: rgba(0,86,196,0.05);
    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}
.clickable {
    cursor: pointer;
}

#accordionSidebar {
    background-color: #161628;
}

/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #000000;
    border-radius: 0px;
}

/*** Works on common browsers ***/
::selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}


/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

::-ms-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 4px #ffffff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2500ff;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2000ba;
}