/*--------------------------------------------------------------
#   S C R O L L B A R S
--------------------------------------------------------------*/
::-webkit-scrollbar{
    width: 7px;
    height: 7px;
    background-color: transparent
}
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.25);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.25);
    background-color: rgba(77, 77, 77, 0.015);;
}
::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: rgba(128,128,128,0.35);
}


/*--------------------------------------------------------------
#    Global Classes
--------------------------------------------------------------*/
body {
    background: #f5f6fa;
}
.table {
    min-width: 650px;
}
.smooth-transition {
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}
.rounded-xl {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.rounded-md {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
