/*CSS HANDLER */
#scroll_btns {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 10px;
  box-shadow: 0 0 3px #000000 inset;
  display: none;
  float: left;
  height: 18px;
  position: relative;
  width: 40px;
	margin: 5px 
}
#scroll_btns .toggleCoupon {
  border-radius: 10px;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
}
#scroll_btns .toggleCoupon::after {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 10px;
  content: "";
  font-size: 9px;
  height: 13px;
  line-height: 13px;
  position: absolute;
  top: calc(50% - 6.5px);
  width: 13px;
}
#scroll_btns #enable_scroll.toggleCoupon::after {
  content: "OFF";
  left: 3px;
  text-indent: 15px;
}
#scroll_btns #disable_scroll.toggleCoupon::after {
  content: "ON";
  right: 3px;
  text-indent: -30px;
}
#enable_scroll.toggleCoupon {
  background: #ff0000 none repeat scroll 0 0;
}
#disable_scroll.toggleCoupon {
  background: #008000 none repeat scroll 0 0;
}
.has_btns #scroll_btns {
  display: inline-block;
}
.has_btns #disable_scroll {
  display: none;
}
.has_btns.is_scrolling #enable_scroll {
  display: none;
}
.has_btns.is_scrolling #disable_scroll {
  display: inline-block;
}

.nano > .nano-pane {
  z-index: 99999;
}


#ctable:empty {height: 0;}

.overflowing .scrollable{
	overflow: auto;
	/*max-height: 500px;*/
}

/*scrollbars*/
#couponcontainer ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
#couponcontainer ::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(255,255,255,1);
}
#couponcontainer ::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
}
#couponcontainer ::-webkit-scrollbar-thumb:hover{
	background: rgba(0,0,0,0.4);
}
#couponcontainer ::-webkit-scrollbar-thumb:active{
	background: rgba(0,0,0,.9);
}
