/* -----------------------------------------------
Tabs
----------------------------------------------- */

.b-tab-list {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: auto;
}

.b-tab {
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  &.active {
    color: #00abf7;
    box-shadow: inset 0 -3px #00abf7;
    background: none;
    border-radius: 0;
  }
}

.b-tab-panel {
  display: none;
  transition: opacity 0.15s linear;
  &.active {
    display: block;
  }
}
