/* Tabs --------------------------------------------------------------------------------------------------------*/
.tabs-scroll {
  overflow-x: auto;
}

.tabs {
  text-align: center;
  white-space: nowrap;
  font-size: 0;
  vertical-align: top;
}

.tab-item {
  display: inline-block;
  position: relative;
  padding: 0 10px;
}
.tab-item:first-child {
  padding-left: 0;
}

.primary-tabs {
  border-bottom: 5px solid;
}
.theme-light .primary-tabs {
  border-bottom-color: #EBEBEB;
}
.theme-dark .primary-tabs {
  border-bottom-color: #73706E;
}

.primary-tab-item::before {
  content: "";
  width: 100%;
  height: 5px;
  z-index: 2;
  position: absolute;
  bottom: -5px;
  left: 0px;
}
.theme-light .primary-tab-item::before {
  background-color: #EBEBEB;
}
.theme-dark .primary-tab-item::before {
  background-color: #73706E;
}

.primary-tab-link {
  color: #8E8E8E;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 27px;
  padding: 20px 10px;
  position: relative;
  display: flex;
  white-space: nowrap;
}
.primary-tab-link::before {
  content: "";
  width: 0;
  height: 5px;
  z-index: 2;
  position: absolute;
  bottom: -5px;
  left: 0px;
  background-color: #0069B4;
}
.primary-tab-link.active {
  color: #0069B4;
}
.primary-tab-link.active::before {
  width: 100%;
}
.primary-tab-link img {
  margin-right: 10px;
  width: 30px;
}

.tab-block .tab-pane {
  display: none;
}
.tab-block .tab-pane.show {
  display: block;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (max-width: 576px) {
  .primary-tab-link .tab-txt {
    display: none;
  }
  .primary-tab-link img {
    margin-right: 0;
  }

  .tab-item {
    padding: 0 5px;
  }
}
@media (min-width: 768px) {
  .tab-item {
    padding: 0 20px;
  }
  .tab-item:first-child {
    padding-left: 0;
  }

  .primary-tab-item {
    padding: 0 30px;
  }
  .primary-tab-item:first-child {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .tab-block.dos .tabs-scroll {
    overflow-x: hidden;
  }
  .tab-block.dos .tabs-scroll .tabs {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

/*# sourceMappingURL=tabs.css.map */