.series__parts {
  width: 100%;
}
.series__parts-section {
  margin-bottom: 2rem;
}
.series__parts-section:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}
.series__parts-section .series__title {
  margin-bottom: 1.5rem;
}
.series__parts-section .series__title .category__title {
  background: rgba(2, 111, 127, 0.1);
  border-radius: 6px;
  padding: 10px;
}
.series__parts-section .series__title .category__title a {
  font-size: 20px;
  color: var(--theme-color) !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  text-decoration: none !important;
}
.series__parts-section .series__title .category__title a .series__thumbnail {
  min-width: 45px;
  height: 45px;
  border-radius: 100px;
  object-fit: cover;
}
.series__parts-section .tabNav-wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
.series__parts-section .tabNav-wrapper-navTab {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
}
.series__parts-section .tabNav-wrapper-navTab::-webkit-scrollbar {
  background: transparent;
  height: 4px;
}
.series__parts-section .tabNav-wrapper-navTab::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 50px;
}
.series__parts-section .tabNav-wrapper-navTab .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  border: 0;
  grid-gap: 5px;
}
.series__parts-section .tabNav-wrapper-navTab .nav-tabs .nav-item {
  border: 0;
}
.series__parts-section .tabNav-wrapper-navTab .nav-tabs .nav-item .nav-link {
  border: 0;
  white-space: nowrap;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}
.series__parts-section .tabNav-wrapper-navTab .nav-tabs .nav-item .nav-link:hover {
  color: var(--theme-color);
}
.series__parts-section .tabNav-wrapper-navTab .nav-tabs .nav-item .nav-link.active {
  background: var(--theme-color);
  color: white;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card .card__img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 6px;
  overflow: hidden;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card .card__img a {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  overflow: hidden;
  padding-bottom: 66.67%;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card .card__img a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card .card__details .card__title {
  font-size: 22px;
  font-weight: bold;
  color: black;
  margin-bottom: 0;
  transition: all 300ms ease-in-out;
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card .card__details .card__title:hover {
  color: var(--theme-color);
}
.series__parts-section .tabNav-wrapper-tabContent .series__parts-grid .series__card .card__details .card__title a {
  color: inherit;
}
.series__parts-section .tabNav-wrapper-tabContent .more__series {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.series__parts-section .tabNav-wrapper-tabContent .more__series-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 111, 127, 0.1);
  color: var(--theme-color);
  padding: 8px 30px 5px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}
.series__parts-section .tabNav-wrapper-tabContent .more__series-btn:hover {
  background: var(--theme-color);
  color: white;
}
