/**SCROLL BAR START 

::-webkit-scrollbar {
  display: none;
}
 SCROLL BAR END **/

/**SCROLL BAR START WITH COLOR **/
.scrollbar {
  margin-left: 22px;
  float: left;
  height: 300px;
  width: 65px;
  background: #fff;
  overflow-y: scroll;
  margin-bottom: 25px;
}

::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-track
{
  border: 0px solid black;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb 
{
  border-radius: 00px;
  background-color: #465161; 
  background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, .2) 25%,
                        transparent 25%,
                        transparent 50%,
                        rgba(255, 255, 255, .2) 50%,
                        rgba(255, 255, 255, .2) 75%,
                        transparent 75%,
                        transparent)
}

  /* horizontal + vertical scroll bar is less heisgh and width */
  /*  ::-webkit-scrollbar-button:end{height: 50px; width:35%;} */
  /*  ::-webkit-scrollbar-button:start{height: 50px; width:35%;} */

 /** SCROLL BAR END **/

 /* custom form select picker right corner arrow margin modification 
.dropdown-toggle::after 
{
    margin-left: -0.625em;
}
*/
/* custom selectpicker search box border color */
.dropdown-menu, .dropdown-grid
{
  border-color: #465161;
}


/* custom selectpicker search box mouse hover item select color */
.dropdown-item:focus, .dropdown-item:hover {
    color: #48b0f7;
}