/*
|---------------------------------------------------------------
| v2025 components
|---------------------------------------------------------------
*/
/*
 * Swiper
------------------------------------------------*/
.v2025-sw-scrollbar {
  margin: clamp(20px, 2.67vw, 40px) 0;
  position: static;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: skewX(-25deg);
}
.v2025-sw-scrollbar .swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 63.38%;
  max-width: 380px;
  height: 8px;
  margin: 0 auto;
  position: static !important;
  background: #eeeeee;
  border-radius: 0;
}
.v2025-sw-scrollbar .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background: #04224a;
  border-radius: 0;
}

.bg-light .v2025-sw-scrollbar .swiper-scrollbar.swiper-scrollbar-horizontal {
  background: #ffffff;
}

/*
 * Tab
------------------------------------------------*/
.v2025tab {
  display: block;
  width: 100%;
  padding: 0;
}
.v2025tab__head {
  display: block;
  width: 100%;
  border-bottom: 1px solid #04224a;
  margin: 0 0 clamp(20px, 2.67vw, 40px);
}
.v2025tab__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  width: auto;
  margin-left: -3px;
  margin-right: -3px;
  margin-bottom: -1px;
  align-items: flex-end;
}
.v2025tab__list > li {
  padding-left: 3px;
  padding-right: 3px;
  width: 0;
  flex-grow: 1;
  flex-basis: 0;
}
.v2025tab__list > li > a {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  padding: 1em 5px;
  text-align: center;
  overflow: hidden;
  text-decoration: none !important;
  cursor: pointer;
}
.v2025tab__list > li > a.js--active {
  background: linear-gradient(90deg, black, black);
  background-size: 100% 3px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media screen and (min-width: 750.02px) {
  .v2025tab__list > li > a {
    font-size: 20px;
    font-size: min(20px, 1.67vw);
  }
}
.v2025tab__content:not(.js--active) {
  display: none;
}
