

.breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .breadcrumbs__item:not(:last-child) .breadcrumbs__link {
    position: relative;
  }
  
  .breadcrumbs__item:not(:last-child) .breadcrumbs__link::after {
    content: " ";
    color: transparent;
    display: inline-block;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border: solid #666 0;
    border-width: 0 1px 1px 0;
    width: 6px;
    height: 6px;
    margin: 0.2em 0.5em;
    position: relative;
    top: 0.5px;
  }
  
  .breadcrumbs__link {
    text-decoration: none;
    font-size: 13px;
    color: #666;
    text-align: left;
    margin: 0;
    display: inline-block;
  }
  
  .breadcrumbs__link:hover {
    text-decoration: underline;
  }
  
  
  
  .category-header {
    margin-top: 24px;
  }
  
  .category-header__info {
    margin-top: 8px;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  
  @media (max-width: 1024px) {
    .category-header__info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .category-header__title {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-top: 0;
  }
  
  .category-header__desc {
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
    color: #8c8c8c;
    display: block;
  }
  
  .category-header__subtitle {
    display: none;
    margin: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .category-header__subtitle {
      display: block;
    }
  }
  .category-header__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: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    white-space: nowrap;
    height: auto;
  }
  
  .category-header__list::-webkit-scrollbar {
    display: none;
  }
  
  @media (max-width: 1024px) {
    .category-header__list {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      overflow-x: auto;
    }
  }
  .category-header__item {
    margin: 4px 2px;
  }
  
  .category-header__link {
    border-radius: 24px;
    padding: 6px 16px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    color: #333;
    line-height: 1.43;
  }
  
  .category-header__link:hover {
    background-color: #f5f5f5;
    text-decoration: none;
  }
  
  
  
  
  
  .category-body {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  .category-body__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  
  .category-body__content {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    margin-bottom: 16px;
    border: 1px solid #e0e0e0;
  }
  
  @media (max-width: 1024px) {
    .category-body__content {
      -ms-grid-column-span: 12;
      grid-column: 12 span;
    }
  }
  .category-body__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  @media (max-width: 1200px) {
    .category-body__top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
    }
  }
  @media (max-width: 1024px) {
    .category-body__top {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      overflow-x: auto;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
    }
  }
  .category-body__top::-webkit-scrollbar {
    display: none;
  }
  
  .category-body__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  
  @media (max-width: 1024px) {
    .category-body__left {
      display: none;
    }
  }
  .category-body__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  
  @media (max-width: 1024px) {
    .category-body__right {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
    }
  }
  .category-body__filter-btn {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    border-radius: 8px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin: 4px 4px 4px 16px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 12px;
    border: 1px solid #cccccc;
    background: white;
    color: #666666;
    display: none;
  }
  
  @media (max-width: 1024px) {
    .category-body__filter-btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      display: none;
    }
  }
  .category-body__filter-icon {
    width: 24px;
    height: 24px;
    fill: #666;
  }
  
  .category-body__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  
  .category-body__item {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }
  @media (max-width: 1440px) {
    .category-body__item {
      -ms-grid-column-span: 3;
      grid-column: 3 span;
    }
  }

  @media (max-width: 1200px) {
    .category-body__item {
      -ms-grid-column-span: 4;
      grid-column: 4 span;
    }
  }
  @media (max-width: 768px) {
    .category-body__item {
      -ms-grid-column-span: 6;
      grid-column: 6 span;
    }
  }
  @media (max-width: 564px) {
    .category-body__item {
      -ms-grid-column-span: 12;
      grid-column: 12 span;
    }
  }
  .category-body__item--list {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
  
  .category-body__link {
    padding-bottom: 10px;
    margin-bottom: -2px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
  
  .category-body__link--list {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  @media (max-width: 768px) {
    .category-body__link--list {
      position: relative;
    }
  }
  @media (max-width: 768px) {
    .category-body__column-content {
      padding-left: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-top: 10px;
    }
  }
  .category-body__price--special {
    margin: 0;
  }
  
  .category-body__price-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 8px;
  }
  
  .category-body__price-wrapper--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  @media (max-width: 768px) {
    .category-body__price-wrapper--list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-right: 10px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }
  .category-body__price--list {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .category-body__price--list-old {
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .category-body__price--list-old {
      margin-left: 3px;
    }
  }
  .category-body__search-wrapper {
    max-width: 255px;
    min-width: 150px;
  }
  
  .category-body__title-link {
    text-decoration: none;
    color: #000;
  }
  
  @media (max-width: 768px) {
    .category-body__title-link {
      font-size: 14px;
      overflow: hidden;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      color: #333333;
      max-height: 48px;
      min-height: 48px;
      line-height: 1.14;
      margin-bottom: 0px;
    }
  }
  .category-body__slide-title--list {
    margin: 0;
    color: #000;
    max-height: 45px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }
  
  .category-body__info--list {
    max-width: 62.5%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  @media (max-width: 768px) {
    .category-body__info--list {
      max-width: 252px;
    }
  }
  .category-body__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  @media (max-width: 768px) {
    .category-body__items {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .category-body__discount {
    margin: 0;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    margin-right: 4px;
    color: #000;
  }
  
  .category-body__discount--list {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .category-body__discount--list {
      text-align: left;
    }
  }
  .category-body__flag {
    padding: 0 3px 0 8px;
    position: relative;
    background-color: #bd3c37;
    margin-right: 20px;
    min-height: 20px;
  }
  
  @media (max-width: 768px) {
    .category-body__flag {
      position: absolute;
      left: 0;
      top: 0;
    }
  }
  .category-body__flag::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 0;
    right: -13px;
    bottom: 0;
    border-style: solid;
    padding-right: 5px;
    border-color: #bd3c37 transparent #bd3c37 #bd3c37;
    bottom: 0;
    border-width: 0 10px 11px 0;
  }
  
  .category-body__flag::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 0;
    right: -13px;
    bottom: 0;
    border-style: solid;
    padding-right: 5px;
    border-color: #bd3c37 transparent #bd3c37 #bd3c37;
    border-width: 11px 10px 0 0;
  }
  
  .category-body__flag-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .category-body__flag-item {
    position: relative;
    margin: 0;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
    font-size: 12px;
  }
  
  .category-body__stock--list {
    margin-top: 5px;
    text-align: right;
  }
  
  @media (max-width: 768px) {
    .category-body__stock--list {
      text-align: left;
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  .category-body__image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  
  .category-body__image-wrapper--list {
    width: auto;
  }
  
  .category-body__notfound {
    padding: 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  
  .category-body__notfound-icon {
    width: 97px;
    height: 97px;
  }
  
  .category-body__notfound-title {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin: 0;
    display: block;
    line-height: 2;
  }
  
  .category-body__sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    display: none;
  }
  
  @media (max-width: 1024px) {
    .category-body__sidebar {
      position: fixed;
      right: 0;
      bottom: 0;
      left: 0;
      border-radius: 16px 16px 0px 0px;
      border: 1px solid whitesmoke;
      z-index: 1000;
      -ms-grid-column-span: 12;
      grid-column: 12 span;
      background-color: #fff;
      -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
              transform: translateY(100%);
      height: calc(100% - 48px);
      background-color: white;
      -ms-touch-action: auto;
          touch-action: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      overflow-wrap: break-word;
      background-clip: border-box;
      z-index: 10000;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      display: none;
    }
  }
  .category-body__sidebar--open {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
  }
  
  .category-body__sidebar-head {
    padding: 16px 16px 16px 16px;
    margin-bottom: 0px;
    position: sticky;
    top: 0px;
    z-index: 2;
    border-bottom: 1px solid #e0e0e0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .category-body__sidebar-info {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
  }
  
  .category-body__sidebar-label::before {
    left: 0px;
  }
  
  .category-body__sidebar-label::after {
    top: 6px;
    left: 4px;
  }
  
  .category-body__sidebar-close {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  
  .category-body__sidebar-close::after {
    content: "";
    position: absolute;
    right: 0px;
    width: 24px;
    height: 2px;
    background-color: #666;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .category-body__sidebar-close::before {
    content: "";
    position: absolute;
    right: 0px;
    width: 24px;
    height: 2px;
    background-color: #666;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .category-body__sidebar-controller {
    display: none;
    padding: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 8px;
    border-radius: 0px 0px calc(-1px + 0.25rem) calc(-1px + 0.25rem);
    background-color: white;
    border-bottom: 1px solid whitesmoke;
    position: sticky;
    bottom: 0px;
    width: 100%;
    z-index: 60;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 4px 0px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 4px 0px;
    margin-top: auto;
  }
  
  @media (max-width: 1024px) {
    .category-body__sidebar-controller {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  .category-body__sidebar-btn {
    width: 100%;
    height: 50px;
    white-space: nowrap;
    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;
    border-radius: 0.25rem;
  }
  
  .category-body__sidebar-btn--btn {
    height: auto;
    padding: 10px 10px;
  }
  
  @media (max-width: 1024px) {
    .category-body__sidebar-list {
      overflow-y: auto;
    }
  }
  @media (max-width: 1024px) {
    .category-body__sidebar-item {
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      overflow-wrap: break-word;
      background-clip: border-box;
      display: block;
      border-top: none;
      border-right: none;
      border-left: none;
      -o-border-image: initial;
         border-image: initial;
      border-radius: 0px;
      border-bottom: 1px solid #e0e0e0;
    }
  }
  .category-body__sidebar-title {
    margin: 0;
    font-size: 16px;
    padding: 0;
    color: #000;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
  }
  
  @media (max-width: 1024px) {
    .category-body__sidebar-title {
      padding: 16px;
      margin-bottom: 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-bottom: unset;
      z-index: 1;
    }
  }
  .category-body__sidebar-title::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: #666;
  }
  
  @media (max-width: 1024px) {
    .category-body__sidebar-title::after {
      right: 16px;
    }
  }
  .category-body__sidebar-title::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    width: 14px;
    height: 2px;
    background-color: #666;
  }
  
  @media (max-width: 1024px) {
    .category-body__sidebar-title::before {
      right: 16px;
    }
  }
  .category-body__sidebar-title--open::before {
    display: none;
  }
  
  .category-body__sidebar-title--open + .category__body-item {
    border-bottom: none;
  }
  
  .category-body__sidebar-filters {
    max-height: 0;
    overflow-y: auto;
    list-style: none;
    overflow-x: hidden;
    will-change: transform;
    padding-right: 10px;
    margin-right: 2px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  
  .category-body__sidebar-filters::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
  }
  
  .category-body__sidebar-filters::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  
  .category-body__sidebar-filters--open {
    max-height: 300px;
  }
  
  .category-body__sidebar-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .category-body__sidebar-text {
    margin: 0;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    line-height: 24px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100px;
    color: #000;
    font-size: 14px;
    margin-left: 15px;
  }
  
  .category-body__sidebar-count {
    margin: 0;
    font-size: 14px;
    color: #8c8c8c;
    padding-left: 4px;
    position: relative;
    background-color: #fff;
    line-height: 24px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .category-body__sidebar-filter {
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }
  
  .category-body__sidebar-filter-wrapper {
    display: inline-block;
    overflow: hidden;
    line-height: 24px;
    cursor: pointer;
  }
  
  #column-left {
    width: 100%;
    padding: 0;
    display: block !important;
  }
  
  .popover {
    z-index: 100;
  }
  
  .panel-heading {
    display: none;
  }
  
  @media (max-width: 1024px) {
    .panel-heading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  #ocfilter-button {
    display: none;
  }
  
  .ocfilter-option-popover {
    display: none !important;
  }
  
  @media (max-width: 1024px) {
    #ocfilter {
      top: 0;
      height: 100%;
    }
  }
  .ocf-selected .category-body__sidebar-label::before {
    background-color: #458500;
    border-color: #458500;
  }
  
  .ocf-selected .category-body__sidebar-label::after {
    opacity: 1;
  }
  
  .ocf-is-mobile {
    display: none;
    height: 0;
    overflow: hidden;
  }
  
  .ocf-mobile {
    display: none;
  }
  
  .ocf-btn-label {
    margin: 0 3px;
  }
  
  .ocf-selected .category-body__sidebar-count {
    display: none;
  }
  
  @media (max-width: 1024px) {
    .ocf-header {
      position: sticky;
      background-color: #fff;
      z-index: 1000;
      top: 0;
      border-radius: 16px 16px 0px 0px;
    }
  }
  @media (max-width: 1024px) {
    .ocf-content {
      overflow-y: auto;
      position: relative;
      height: 100%;
    }
  }
  .ocf-container {
    height: 100%;
  }
  
  @media (max-width: 1024px) {
    .ocf-popover-content {
      display: none;
    }
  }
  .ocf-popover {
    z-index: 1000;
  }