.modal-backdrop
			{
			background-color:#ababab;
			opacity:0.8 !important; 
	 
			}

html.modal-open {

    /* All of this stops the page from scrolling in the background, especially important on mobile devices. */
    -ms-overflow-style: scrollbar;
    overflow: hidden;

}

body.modal-open {

  overflow: hidden !important;
  overflow-y: hidden !important;   
  padding-right: 0px !important;
  margin-right: 0px !important;
  height:100%;

}

.modal-body::-webkit-scrollbar {
    width: 5px;
}
 
.modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #eee;
}

.modal-body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #888;
}

.modal-body::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(100,100,100,0.4); 
}
	
.no-scroll {
    overflow-y: hidden;
}

.modal-body {
		overflow-y: auto;
		}	

 