.page-inp {
  max-width: 58px;
  height: 40px;
  text-align: center;
}

.page-item {
  height: 38px;
  width: 40px;
  margin-left: 6px;
}

.page-item:hover,
.page-item.active {
  border-color: var(--primary);
}

.page-item a {
  width: 100%;
  height: 100%;
  line-height: 1;
}

@media (max-width: 575px) {
  .prod-grid {
    margin-right: -8px;
    margin-left: -8px;
  }
  .product-mini-item {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 375px) {
  .page-item:nth-child(2) {
    margin-left: 0;
  }
  .page-item {
    width: 37px;
  }
}
@media (max-width: 360px) {
  .page-item {
    width: 34px;
  }
}
@media (max-width: 335px) {
  .page-item {
    width: 32px;
  }
}
.filter-wrapper {
  padding: 20px 10px;
  background: var(--lightgray);
}

.filter-col-left::after,
.prod-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(225, 225, 225, 0.4);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.filter-col-left.show::after,
.prod-grid.show::after {
  opacity: 1;
  visibility: visible;
}

.filter-active-item {
  border-bottom: 1px solid #c2c2c2;
}

.filter-bottom {
  height: 1px;
  background: #c2c2c2;
  width: calc(100% - 20px);
  margin: 0 auto;
}

.price-filter {
  padding-bottom: 0px;
}

.page-inp {
  max-width: 58px;
  height: 40px;
  text-align: center;
}

.price-filter.price-filter,
.filter-active {
  padding-left: 10px;
  padding-right: 10px;
}

.filter-link {
  margin-bottom: 12px;
}

.filter-link:hover {
  color: var(--primary);
}

.filter-link:hover .checkbox {
  border-color: var(--primary);
}

.filter-link-box {
  background: #fff;
  border: 1px solid var(--primary);
  padding: 5px 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  line-height: 1;
}

.filter-title {
  line-height: 1;
}

.filter-remove-ic {
  margin-left: 10px;
}

.filter-toggle {
  padding: 20px 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.filter-toggle.active,
.filter-toggle:hover {
  color: var(--primary);
}

.filter-cont {
  display: none;
  max-height: 234px;
  overflow: auto;
  padding: 0 10px;
}

.filter-cont::-webkit-scrollbar {
  width: 6px;
}

.filter-cont::-webkit-scrollbar-thumb {
  border-radius: 3px;
}

.filter-cont::-webkit-scrollbar-thumb {
  background: #c0c0c0;
}

.arrow-down {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.filter-toggle.active .arrow-down {
  transform: rotate(-90deg);
}

.filter-cont.show {
  display: block;
}

.range-wrapper {
  position: relative;
  margin-bottom: 7px;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 45px;
  left: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
  border: none;
  padding: 0;
  transform: translateY(-1px);
  -moz-transform: translateY(-9px);
}

.price-inp {
  height: 42px;
}

.slider-track {
  width: 100%;
  height: 5px;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background: #d5d5d5;
}

input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}

input[type=range]::-ms-track {
  appearance: none;
  height: 5px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background-color: var(--primary);
  cursor: pointer;
  margin-top: -13px;
  pointer-events: auto;
  border-radius: 50%;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  cursor: pointer;
  margin-top: -13px;
  border-radius: 50%;
  background-color: var(--primary);
  pointer-events: auto;
}

input[type=range]::-ms-thumb {
  appearance: none;
  height: 18px;
  width: 18px;
  cursor: pointer;
  border-radius: 50%;
  margin-top: -13px;
  background-color: var(--primary);
  pointer-events: auto;
}

input[type=range]:active::-webkit-slider-thumb,
input[type=range]:hover::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 3px solid var(--primary);
}

.range-values {
  position: relative;
  margin-bottom: 14px;
}

.plus-line {
  position: relative;
  width: 14px;
  height: 2px;
  background: var(--black);
}

.plus-line::after {
  content: "";
  position: absolute;
  top: -6.5px;
  left: 6.5px;
  right: 0;
  background: var(--black);
  width: 2px;
  height: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.plus-line.active::after {
  transform: rotate(90deg);
  opacity: 0;
}

.check-label {
  line-height: 1;
  padding: 7px 0;
  cursor: pointer;
  user-select: none;
}

.check-label:first-of-type {
  padding-top: 0;
}

.filter-link .checkbox::after {
  border-color: #FFF;
}

.filter-link.active .checkbox::after {
  display: block;
}

.filter-link.active .checkbox {
  border-color: var(--primary);
  background: var(--primary);
}

.box-gray {
  padding: 16px 20px;
  background: var(--lightgray);
}

.filter-cont-left {
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.category-img-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .filtr-btn {
    display: none;
  }
  img.product-image {
    width: 238px;
    height: 238px;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .category-img-txt {
    font-size: 25px;
    line-height: 110%;
  }
  .category-img {
    height: 135px;
    object-fit: cover;
  }
  .filter-cont-left {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    overflow-y: scroll;
    height: 100%;
    transition: transform 0.2s ease;
    background: #fff;
    transform: translateX(100%);
  }
  .filter-cont-left.active {
    transform: translateX(0);
  }
  .filter-wrapper {
    padding: 20px 12px;
    min-height: 100vh;
  }
  .filter-item {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .filter-header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .prod-counter {
    margin-top: 3px;
  }
  .close-modal {
    cursor: pointer;
    padding: 5px 10px;
    background: #fff;
    border: 2px solid var(--primary);
    -moz-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
  }
  .close-modal:hover {
    background: var(--primary);
  }
}
.category-img-breadcrumbs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  justify-content: center;
}

.category-img-breadcrumbs li a, .category-img-breadcrumbs li:last-of-type span {
  color: #fff;
}

.breadcrumb li::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.69873 12.427L10.4274 7.69767L5.69873 2.96834' stroke='%23FFFFFF' stroke-width='1.3'/%3E%3C/svg%3E");
}

.sort-icon {
  padding: 7px;
  cursor: pointer;
}

.sort-icon:first-of-type {
  padding-left: 0;
}

.svg.grid-icon {
  height: 21px;
  width: 21px;
  transition: background-color 0.2s ease;
}

.sort-icon:hover .svg.grid-icon path,
.sort-icon.active .svg.grid-icon path {
  fill: var(--primary);
}

.sort-btn {
  background: #fff;
  padding: 10px 12px;
  width: 210px;
  cursor: pointer;
  border: 1px solid #DADDE0;
  user-select: none;
}

.sort-btn.active .arrow-down {
  transform: rotate(-90deg);
}

.sort-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #DADDE0;
  padding: 8px 0;
  display: none;
}

.sort-dropdown a {
  padding: 8px 12px;
  display: block;
}

.sort-dropdown a:hover,
.sort-dropdown a.active {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 1245px) {
  .category-img-breadcrumbs {
    bottom: 15px;
  }
  .category-img-txt {
    top: calc(50% - 15px);
  }
}
@media (max-width: 1050px) {
  .category-img-breadcrumbs {
    bottom: 11px;
  }
}
@media (max-width: 991px) {
  .category-img-breadcrumbs .container-breadcrumbs {
    padding-left: 0;
  }
  .category-img-breadcrumbs .breadcrumb ol {
    padding-right: 0;
    justify-content: center;
    width: 100%;
  }
  .category-img-breadcrumbs .breadcrumbs-list li:last-of-type {
    display: none;
  }
}
@media (max-width: 575px) {
  .sort-btn,
  .filtr-btn {
    width: 100%;
  }
  .filtr-btn {
    text-align: center;
  }
  .sort-dropdown {
    min-width: 200px;
    right: 0;
    left: unset;
  }
  .category-system-row {
    gap: 16px 0;
  }
}
.home-mid-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  text-align: center;
}

.home-mid-link {
  overflow: hidden;
  border-radius: 8px;
}

.home-mid-link img {
  transition: transform 0.2s ease;
}

.home-mid-link:hover img {
  transform: scale(1.04);
}

.home-cat-title {
  background: #fff;
  border-radius: 8px;
  position: absolute;
  bottom: 5px;
  left: 4px;
  padding: 8px 24px;
}

.home-cat-img {
  border-radius: 8px;
}

@media (max-width: 767px) {
  .home-mid-title {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .home-mid-banners {
    gap: 16px 0;
  }
}

/*# sourceMappingURL=category.css.map */
