/******************* BASIC STYLING **********************/
:root{
  --tab_height: 36px;
}

.scroll_tabs_container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  text-align: left;
  height: var(--tab_height);
  margin-bottom: 17px;
}

ul.scroll_tabs_container {
  list-style: none;
}

.scroll_tabs_container div.scroll_tab_inner {
  height: var(--tab_height);
  -webkit-overflow-scrolling: touch;
  // overflow-x: auto;
  // overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* padding-left: 26px;
     padding-right: 26px; */
}

.scroll_tab_inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.scroll_tabs_container div.scroll_tab_inner span,
.scroll_tabs_container div.scroll_tab_inner li {
  line-height: 28px;
  font-size: 14px;
  background-color: white;
  color: #333333;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 10px;
  color: black;

  .tab-title {
    background-color: #E7E7E7;
    height: 28px;
    border-radius: 4px;
    padding-left: 45px;
    padding-right: 45px;
    text-align: center;
  }
  @media (max-width: 758px) {
    .tab-title {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  .tab-indicator {
    margin-top: 5px;
    height: 3px;
    width: 100%;
    background-color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.scroll_tabs_container div.scroll_tab_inner span.tab_selected,
.scroll_tabs_container div.scroll_tab_inner li.tab_selected {
  background-color: white;
  color: white;

  .tab-title {
    background-color: #013A40;
    height: 28px;
    border-radius: 4px;
    text-align: center;
  }

  .tab-indicator {
    margin-top: 5px;
    height: 3px;
    width: 100%;
    background-color: #013A40;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.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: 0;
  width: 0;
}

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

.scroll_tabs_container .scroll_tab_left_button {
  height: 28px;
  /* background-color: #CCCCCC; */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.scroll_tab_left_button {
  transform: rotate(180deg);
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.scroll_tabs_container .scroll_tab_left_button::before {
  content: "\2794";
  line-height: 28px;
  padding-left: 5px;
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.scroll_tabs_container .scroll_tab_left_button_over {
  /* background-color: #999999; */
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.scroll_tabs_container .scroll_tab_left_button_disabled {
  color: #AAAAAA;
  background-color: #CCCCCC;
}

.scroll_tabs_container .scroll_tab_right_button {
  height: 28px;
  /* background-color: #CCCCCC; */ 
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png'); /* HTTP or HTTPS URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.scroll_tabs_container .scroll_tab_right_button::before {
  content: "\2794";
  line-height: 28px;
  padding-left: 5px;
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png'); /* HTTP or HTTPS URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.scroll_tabs_container .scroll_tab_right_button_over {
  /* background-color: #999999; */
  background-image: url('https://file.hstatic.net/200000355853/file/fade_filter.png'); /* HTTP or HTTPS URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.scroll_tabs_container .scroll_tab_right_button_disabled {
  color: #AAAAAA;
  /* background-color: #CCCCCC; */
}

