.article-page.white-background-container {
  background-color: #fff;
}

body.section-product .white-background-container {
  background-color: #fff;
}

body.section-category .product-image-contaner {
  display: none;
}

body.section-category .header-has-background .mobile-search-icon {
  display: none;
}

body.section-category .header-has-background.scrolled .mobile-search-icon {
  display: block;
}

body.section-category .banners-section {
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    margin-bottom: 32px;
  }
}

body.section-product:not(.product-page) .section-template-title {
  align-items: center;
}

.section-template-title {
  display: flex;
  justify-content: space-between;

  .product-image-contaner {
    flex-shrink: 0;
  }

  @media screen and (max-width: 768px) {
    flex-direction: column;

    .product-image-contaner {
      order: -1;
    }
  }

  .product-image-contaner img {
    height: 400px;
    width: unset;
    margin-bottom: 0;

    @media screen and (max-width: 768px) {
      height: auto;
      max-height: 400px;
    }
  }
}

.category-page-large-title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.6px;
  padding: var(--spacing-32) 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .category-page-large-title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.396px;
    padding: var(--spacing-16) 0;
  }
}

.category-description {
  font-size: 16px;
  line-height: 24px;
  color: #555;
  margin: 8px 0 0;
}

@media screen and (min-width: 768px) {
  .category-description {
    font-size: 18px;
    margin: 16px 0 0;
  }
}

.bold {
  font-weight: 700;
}

.p-0 {
  padding: 0;
}

.site-body {
  margin: var(--spacing-64) 0;
}

.section-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px 8px 20px;
  background-color: #fff;
  height: 100%;

  @media screen and (max-width: 768px) {
    padding: 16px 16px 8px;
  }

  h3 {
    margin: 0;
  }
}

.section-item:hover {
  box-shadow: 0px 20px 28px 0px rgba(0, 0, 0, 0.15);
}

.section-item-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  min-height: 48px;
}

.section-tree {
  margin-top: 24px;
  margin-bottom: 64px;
  gap: 32px;

  @media screen and (max-width: 768px) {
    gap: 16px;
  }
}

.section-tree-title {
  height: 100%;
}

.product-info-container {
  margin: 32px 0 64px;

  .pagination {
    margin-bottom: 64px;
  }

  @media screen and (max-width: 768px) {
    padding: 0 16px;
    margin: 32px 0;

    .pagination {
      margin-bottom: 32px;
    }

    .section-tree {
      margin-bottom: 16px;
    }
  }
}

.section-product {
  .product-info-container {
    margin: 0;
  }
}

.section-content-container {
  max-width: 1216px;
  margin: 0 auto;

  @media screen and (max-width: 1226px) {
    padding: 0 16px;
  }
}

.product-info-section {
  padding: 30px 0;

  &:nth-child(even) {
    background-color: #fff;

    .info-section-article {
      background-color: #f2f2f2;
    }
  }

  &.product-info-all {
    padding: 0;
  }

  .info-section-header {
    display: flex;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      align-items: start;
      gap: 8px;
    }
  }

  .info-section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.6px;
    margin: 0;
  }

  @media screen and (max-width: 768px) {
    .info-section-title {
      font-size: 32px;
      line-height: 40px;
      letter-spacing: 0.396px;
    }
  }

  .info-section-body {
    padding: 32px 0;
  }

  .info-section-articles {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .info-section-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background-color: #fff;
    width: 384px;
    max-width: 384px;
    cursor: pointer;

    &:hover {
      box-shadow: 0px 20px 28px 0px rgba(0, 0, 0, 0.15);
    }
  }

  .info-article-body {
    display: flex;
    justify-content: space-between;
  }

  .info-article-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 56px;
  }

  .info-article-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.352px;
    margin: 0;
  }

  .article-arrow {
    align-self: flex-end;
    margin-left: 24px;
  }
}

.product-info-section.invert-highlight:nth-child(odd) {
  background-color: #f2f2f2;
}

.product-info-section.invert-highlight:nth-child(odd) .info-section-article {
  background-color: #fff;
}

.product-info-section.invert-highlight:nth-child(even) {
  background-color: #fff;
}

.product-info-section.invert-highlight:nth-child(even) .info-section-article {
  background-color: #f2f2f2;
}

.section-nav-container {
  background-color: #fff;
  border-bottom: 1px solid var(--grey-gray-2, #ddd);

  @media screen and (max-width: 768px) {
    border: 0;
    background-color: transparent;
  }
}

.navigation-content {
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}

.section-nav-item.active {
  border-bottom: 2px solid var(--Tab-tab-selector-active, #512e6d);
}

.section-nav {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);

  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .section-nav-item {
    background-color: #fff;
    padding: 24px 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: #767676;
    white-space: nowrap;

    svg path {
      transition: all .3s;
      stroke: #767676;
    }

    #question-thin path {
      fill: #767676;
    }

    @media screen and (min-width: 769px) {
      &:hover,
      &.active {
        color: #000;

        path {
          stroke: #000;
        }

        #question-thin path {
          fill: #000;
        }
      }
    }

    @media screen and (max-width: 768px) {
      border: 1px solid var(--border-border-contrast, #ddd);

      justify-content: flex-start;
      padding: 20px 16px;

      color: #000;

      svg path {
        stroke: #000;
      }

      svg#question-thin path {
        fill: #000;
      }

      &:nth-child(odd):last-child {
        grid-column: span 2;
      }

      svg {
        width: 24px;
        height: 24px;
      }
    }
  }

  .section-nav-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.45px;
    margin: 0;

    @media screen and (max-width: 768px) {
      font-size: 16px;
    }
  }

  .section-nav-icon {
    width: 32px;
    height: 32px;
  }
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}