.badge-big {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.4rem;
  font-weight: 500;
}
.badge-big i {
  font-size: 1.5rem !important;
}

.noUi-target,
.noUi-target * {
  box-sizing: border-box;
  /* stylelint-disable */
  touch-action: none;
  /* stylelint-enable */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: none;
}

.noUi-base,
.noUi-connects {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Wrapper for all connect elements.
  */
.noUi-connects {
  z-index: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}

.noUi-connect,
.noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform-origin: 0 0;
  will-change: transform;
  transform-style: preserve-3d;
  transform-style: flat;
}

.noUi-connect {
  width: 100%;
  height: 100%;
  background: #f5ecec;
}

.noUi-origin {
  width: 10%;
  height: 10%;
}

/* Give origins 0 height/width so they don't interfere with clicking the
  * connect elements.
  */
.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-touch-area {
  width: 100%;
  height: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

/* Offset direction
*/
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  right: auto;
  left: 0;
}

.noUi-state-drag * {
  /* stylelint-disable */
  cursor: inherit !important;
  /* stylelint-enable */
}

/* Slider size and handle placement;
  */
.noUi-horizontal {
  height: 8px;
  margin: 0 8px;
}

.noUi-handle {
  position: absolute;
  cursor: default;
  background: #d4a7a8;
  border: 1px solid #d4a7a8;
  border-radius: 50%;
  outline: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.noUi-horizontal .noUi-handle {
  top: -4px;
  right: -8px;
  width: 16px;
  height: 16px;
}

.noUi-vertical {
  width: 8px;
  margin: 8px 0;
}

.noUi-vertical .noUi-handle {
  top: -8px;
  right: -4px;
  width: 16px;
  height: 16px;
}

/* Styling;
  * Giving the connect element a border radius causes issues with using transform: scale
  */
.noUi-target {
  position: relative;
  background: #e9ecef;
  border: 0 solid #dee2e6;
  border-radius: 0.625rem;
}

/* Handles and cursors;
  */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-active {
  background: #c38586;
}

/* Disabled state;
  */
[disabled] .noUi-connect {
  background: #e9ecef;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
  *
  */
.noUi-value {
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.noUi-value-sub {
  font-size: 10px;
  color: #ccc;
}

/* Markings;
  *
  */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
  *
  */
.noUi-pips-horizontal {
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 0;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  width: 2px;
  height: 5px;
  margin-left: -1px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
  *
  */
.noUi-pips-vertical {
  top: 0;
  left: 100%;
  height: 100%;
  padding: 0 10px;
}

.noUi-value-vertical {
  padding-left: 25px;
  transform: translate(0, -50%);
}
.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  position: absolute;
  display: block;
  padding: 1px 5px;
  font-size: 12px;
  font-weight: 600;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.625rem;
}

.noUi-horizontal .noUi-tooltip {
  bottom: 120%;
  left: 50%;
  transform: translate(-50%, 0);
}

.noUi-vertical .noUi-tooltip {
  top: 50%;
  right: 120%;
  transform: translate(0, -50%);
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  bottom: 10px;
  left: auto;
  transform: translate(50%, 0);
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  top: auto;
  right: 28px;
  transform: translate(0, -18px);
}

.display-toggle__label {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
  padding-right: 1rem;
  position: relative;
  top: -3px;
}
@media (max-width: 992px) {
  .display-toggle__label {
    font-size: calc(0.825rem + 0.4838709677vw);
  }
}
.display-toggle__link {
  width: 43px;
  height: 43px;
  text-align: center;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #d4a7a8;
}
.display-toggle__link:hover, .display-toggle__link:focus {
  color: #212529;
  background: #F0D9D9;
}
.display-toggle__link.active {
  color: #fff;
  background: #d4a7a8;
}
.display-toggle__link.active .display-toggle__icon {
  filter: brightness(100);
}
.display-toggle__icon {
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 41px;
  height: 41px;
}
.display-toggle__icon.list-model {
  background-image: url(/themes/czapki25/assets//img-dist/0df358984f9c6ef1264240f211e532fa.svg);
}
.display-toggle__icon.list-person {
  background-image: url(/themes/czapki25/assets//img-dist/549c12029fbcf9a6faa78a78c0c4e583.svg);
}

.filter_button {
  position: relative;
  top: -4px;
  display: flex;
  align-items: center;
}
.filter_button .filters_icon {
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 42px;
  height: 42px;
  background-image: url(/themes/czapki25/assets//img-dist/79127b2434e26543396fd5bde712cfda.svg);
  margin-left: 0.5rem;
}

@media (max-width: 767.98px) {
  .search-filters {
    border: 0;
    border-radius: 0;
  }
}
.search-filters__header {
  margin-bottom: 0.5rem;
}
.search-filters__title {
  font-weight: 400;
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .search-filters__title {
    font-size: calc(0.825rem + 0.4838709677vw);
  }
}
.search-filters__block .search-select .select-title {
  width: 100%;
  display: flex;
  height: 50px;
  border: 1px solid #dee2e6;
  border-radius: 0.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 0 1rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.search-filters__block .search-select .select-title i {
  position: absolute;
  color: #849592;
  font-size: 2rem;
  background-color: #fff;
  right: 0;
  padding-right: 0.5rem;
}
.search-filters__block .search-select .dropdown-menu {
  border-radius: 0.3125rem;
  padding: 1rem;
  gap: 1rem;
}
.search-filters__block .search-select .dropdown-menu.show {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.search-filters__block .search-select .dropdown-menu a {
  color: #343a40;
  line-height: 1.1;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox {
  width: 100%;
  display: flex;
  height: 50px;
  border: 1px solid #dee2e6;
  border-radius: 0.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: 0.3s all ease;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox .custom-control-label {
  width: 100%;
  padding: 10px 0;
  transition: 0.3s all ease;
  cursor: pointer;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox .custom-control-label::before {
  display: none;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox .custom-control-label:after {
  background: none;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox:hover, .search-filters__collapse .facet-items .filter-item .custom-checkbox:focus {
  background-color: #c9dad7;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox .custom-control-input:checked ~ .custom-control-label {
  padding-left: 30px;
  font-weight: 500;
}
.search-filters__collapse .facet-items .filter-item .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  left: 0px;
  top: 13px;
  background: url(/themes/czapki25/assets//img-dist/0e62effc81239888f022a857c781d19e.svg);
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.promo-banner {
  padding: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}
.promo-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease;
}
.promo-banner:hover, .promo-banner:focus {
  border-color: transparent !important;
}
.promo-banner:hover img, .promo-banner:focus img {
  scale: 1.05;
}

#category .js-content-wrapper {
  width: 100%;
}

.subcategories-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  overflow-x: auto;
  width: 100%;
  border-bottom: 2px solid #F3F3F3;
}
.subcategories-group .btn-secondary {
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}

.pagination .page-item {
  margin: 0 8px;
}
.pagination .page-item .page-link {
  border-radius: 0.625rem !important;
  width: 50px;
  height: 50px;
  line-height: 46px;
  padding: 0;
  text-align: center;
  border-color: #849592;
  color: #849592;
}
.pagination .page-item.active .page-link {
  background-color: #849592 !important;
  color: #fff;
}

#js-product-list-footer #category-description,
#js-product-list-footer #category-description-2 {
  border: 1px solid #dee2e6;
  border-radius: 0.625rem;
  padding: 3rem 2rem 3rem 3rem;
}
#js-product-list-footer #category-description .content .desc,
#js-product-list-footer #category-description-2 .content .desc {
  display: block;
  max-height: 280px;
  overflow-y: auto;
  font-size: 1rem;
  font-weight: 300;
  color: #5E5E5E;
  padding-right: 1rem;
}
