.tabs {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}
.tabs .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tabs .tabs__input {
  display: none;
}
.tabs .tabs__label {
  padding: 9px 17px;
  font-size: 15px;
  border: 1px solid #D1D1D1;
  color: #333;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.tabs .tabs__label:hover {
  border-color: #999;
}
.tabs .tabs__input:checked + .tabs__label {
  border-color: black;
  color: black;
  font-weight: 700;
}/*# sourceMappingURL=tab.css.map */