/******************* BASIC STYLING **********************/
.scroll_tabs_container {
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  text-align: left;
  height: 120px;
  margin-bottom: 10px;
}

ul.scroll_tabs_container {
  list-style: none;
}

.scroll_tabs_container div.scroll_tab_inner {
  height: 120px;
}

.scroll_tabs_container div.scroll_tab_inner span, .scroll_tabs_container div.scroll_tab_inner li {
  /*padding-left: 20px;
  padding-right: 20px;
  line-height: 90px;
  font-size: 14px;
  background-color: #CCCCCC;
  color: #333333;
  cursor: pointer;*/
}

.scroll_tabs_container div.scroll_tab_inner li {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  list-style-type: none;
}

.scroll_tabs_container div.scroll_tab_inner span.scroll_tab_left_finisher {
  padding: 0px;
  width: 0px;
}

.scroll_tabs_container div.scroll_tab_inner span.scroll_tab_right_finisher {
  padding: 0px;
  width: 0px;
}

.scroll_tabs_container .scroll_tab_left_button {
   display:block;
   opacity: 0.15;
   left:12px!important;
  width:29px!important;
  height: 90px;
  background-image: url(../images/round-left-arrow.svg);
  background-repeat: no-repeat;
  background-size: 29px 29px;
  background-position: center center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius:36px;
  position: relative;
  z-index: 5;
}

.scroll_tabs_container .scroll_tab_left_button::before {
  /*content: "\25C0";
  line-height: 29px;
  padding-left: 5px;*/
   display: none;
}

.scroll_tabs_container .scroll_tab_left_button_over {
  /*background-color: #999999;*/
  opacity: 0.65;
}

.scroll_tabs_container .scroll_tab_left_button_disabled {
  /*color: #AAAAAA;
  background-color: #CCCCCC;*/
  opacity: 0;
  cursor:not-allowed;
}

.scroll_tabs_container .scroll_tab_right_button {
  display:block;
   opacity: 0.15;
   right:14px!important;
  width:29px!important;
  height: 90px;
  background-image: url(../images/round-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 29px 29px;
  background-position: center center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

.scroll_tabs_container .scroll_tab_right_button::before {
  /*content: "\25B6";
  line-height: 29px;
  padding-left: 5px;*/
  display: none;
}

.scroll_tabs_container .scroll_tab_right_button_over {
  /* background-color: #999999; */
  opacity: 0.65;
}

.scroll_tabs_container .scroll_tab_right_button_disabled{
  /* color: #AAAAAA;
  background-color: #CCCCCC;*/
  opacity: 0;
  cursor:not-allowed;
}

