*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

.clear {
  width: 100%;
  float: left;
  clear: left;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.tabs-component__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  list-style: none;
  margin: 0 0 -1px 0;
  padding: 0;
}
.tabs-component__list-item {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.tabs-component__list-item a {
  background-color: #fff;
  border: 1px solid #3c3938;
  border-bottom-width: 0;
  border-top-left-radius: var(--border-radius-button);
  border-top-right-radius: var(--border-radius-button);
  display: block;
  padding: 12px 16px;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.tabs-component__list-item a[aria-selected=false] {
  background-color: #f3f2f2;
  border-bottom-width: 1px;
}