/*! nouislider - 12.1.0 - 10/25/2018 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
   */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
  background: var(--gray);
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* Offset direction
   */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

/* 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-handle {
  position: absolute;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
   */
.noUi-horizontal {
  height: 1px;
}

.noUi-handle.noUi-handle-lower {
  right: -20px !important;
}

.noUi-horizontal .noUi-handle {
  outline: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 7px solid var(--hover);
  left: -17px;
  top: -12px;
  background: var(--white);
  box-shadow: unset;
  cursor: pointer;
}

.noUi-vertical {
  width: 1px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -8px;
  left: auto;
}

/* Styling;
   * Giving the connect element a border radius causes issues with using transform: scale
   */
.noUi-target {
  background: var(--bg-dark);
  /* background: #FAFAFA;
      border-radius: 4px;
      border: 1px solid #D3D3D3;
      box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB; */
}

.noUi-connects {
  border-radius: 3px;
  height: 2px;
  top: 0px;
}

.noUi-connect {
  background: var(--primary);
  height: 100%;
}

/* Handles and cursors;
   */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
   */
/* .noUi-handle:before,
  .noUi-handle:after {
      content: "";
      display: block;
      position: absolute;
      height: 14px;
      width: 1px;
      background: #E8E7E6;
      left: 14px;
      top: 6px;
  } */

/* .noUi-handle:after {
      left: 17px;
  } */

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
   */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
   *
   */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
   *
   */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
   *
   */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
   *
   */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
   *
   */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  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 {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.filters-widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filters-widget .filters-form {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);

}


.filters-widget .filter-block {
  margin: 0px;
}

.filters-widget .filter-block+.filter-block {
  margin-top: 30px;
}

.filters-widget .filter-block .filter-block-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-align: center;
  align-items: center;
  padding: 0px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0px 0px 15px 0px;
}

.filters-widget .filter-block .filter-block-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.filters-widget .filter-block .filter-block-content input[type="number"] {
  appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.filters-widget .filter-block .filter-block-content input[type="number"]::-webkit-outer-spin-button,
.filters-widget .filter-block .filter-block-content input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.filters-widget .filter-block .filter-block-content .range-slider+.inputs {
  margin-top: 20px;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal {
  height: 1px;
  margin: 10px;
  border-radius: 2px;
  background-color: #e09542;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-base,
.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-connect,
.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-connect {
  top: -2px;
  height: 5px;
  border-radius: 2px;
  background-color: #e09542;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.filters-widget .filter-block .filter-block-content .noUi-horizontal .noUi-handle {
  position: absolute;
  top: -8px;
  left: auto;
  right: -8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #e09542;
  background-color: #fff;
  outline: none;
  cursor: pointer;
}

.filters-widget .filter-block .filter-block-content .inputs.range {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.filters-widget .filter-block .filter-block-content .inputs.range .group {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex-align: start;
  align-items: flex-start;
  width: calc(50% - 5px);
}

.filters-widget .filter-block .filter-block-content .inputs.range .group input {
  width: 100%;
  padding: 5px;
  color: #c4c4c4;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e09542;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.filters-widget .filter-block .filter-block-content .inputs.range .group input[name] {
  color: #000;
}

.filters-widget .filter-block .filter-block-content .inputs.range .group+.group {
  margin-left: 10px;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-align: center;
  align-items: center;
  padding-left: 35px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  min-height: 24px;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label .indicator {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  margin: auto 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #e09542;
  border-radius: 2px;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label .indicator:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #e09542;
  opacity: 0;
  transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -webkit-transition: opacity 0.1s linear;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group label:hover .indicator:before {
  opacity: 0.2;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group input {
  display: none;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group input:checked+label .indicator:before {
  opacity: 1;
}

.filters-widget .filter-block .filter-block-content .inputs.checkboxes .group+.group {
  margin-top: 5px;
}


.filters-widget .price__block {
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
  border-radius: 2px;
  padding: 20px;
  padding-bottom: 30px;
}


.filters-widget input {
  all: initial;
  border: 1px solid var(--gray);
  border-radius: 5px;
  background: var(--white);
  width: 95px;
  height: 30px;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--gray);
  transition: var(--transition);
}

.filters-widget input:hover,
.filters-widget input:focus {
  border: 1px solid var(--black);
  color: var(--black);
}

.filters-widget .inputs.price.range {
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: var(--stroke);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  align-items: center;
  margin-top: 25px;
  justify-content: center;
}

.filters-widget .accordeon-block-header {
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: var(--head);
  font-family: var(--font-family);
  padding: 20px 30px;
  margin: -20px -30px;
}

.filters-widget .price__block .accordeon-block-header {
  padding: unset;
  margin: unset;
  margin-bottom: 35px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--black);
}

.filters-widget .group-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray);
}

.filters-widget .inputs.checkboxes.list .group:hover .group-label {
  color: var(--primary);
}

.filters-widget .inputs.checkboxes.list .group:has(input:checked) .group-label {
  color: var(--black);
}

.filters-widget .accordeon-block {
  cursor: pointer;
  background: var(--white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
  border-radius: 3px;
  padding: 20px 30px;
  padding-bottom: 20px;
  transition: all .5s;
  border: 1px solid var(--white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
}

/* .filters-widget .accordeon-block.opend {
  background: var(--card);
  border: 1px solid var(--background-dark);
} */

.filters-widget .accordeon-block svg {
  transition: all .5s;
  pointer-events: none;
}

.filters-widget .accordeon-block.opend svg {
  transform: rotate(45deg);
}

.filters-widget .accordeon-block-header:hover .accordeon-block-header-title {
  color: var(--primary);
}

.filters-widget .accordeon-block-header:hover svg path {
  fill: var(--primary);
}

.filters-widget .accordeon-block-header:hover svg {
  transform: rotate(45deg);
}

.filters-widget .accordeon-block-header-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--black);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap:5px;
}

.filters-widget .buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filters-widget .buttons .btn {
  width: 100%;
  text-align: center;
  align-items: center;
  place-content: center;
  background: transparent;
}

.filters-widget .buttons .btn:hover {
  background: var(--primary);
}

.filters-widget .content__toggler {
  display: flex;
  pointer-events: none;
}

.filters-widget .clear-btn {
  display: flex;
  gap: 5px;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.filters-widget .clear-btn button {
  background: transparent;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray);
  /* 18.2px */
  border: unset;
}

.filters-widget .clear-btn:hover {
  color: var(--primary);
}

.filters-widget .clear-btn:hover button {
  color: var(--primary);
}

.filters-widget .clear-btn:hover svg path {
  stroke: var(--primary);
}

.filters-widget .accordeon-block .padding-box {
  max-height: 265px;
  overflow-y: auto;
  transition: unset;
}

.filters-widget .inputs.checkboxes.list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  padding-right:10px;
}

.filters-widget .inputs.checkboxes.list .group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filters-widget .inputs.checkboxes.list .group input {
  all: initial;
  border: 1px solid var(--gray);
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
  cursor: pointer;
  flex-shrink:0;
}

.filters-widget .inputs.checkboxes.list .group input::before {
  content: '';
  background: var(--primary);
  margin: auto auto;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all .3s;
}

.filters-widget .inputs.checkboxes.list .group input:checked {
  border-color: var(--primary);
}

.filters-widget .inputs.checkboxes.list .group input:checked::before {
  opacity: 1;
}


.woocommerce #openFilter {
  position: fixed;
  background: var(--head);
  border: 1px solid var(--head);
  color: var(--card);
  padding: 15px 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in;
  writing-mode: vertical-lr;
  left: 0;
  top: 50%;
  display: none;
  transform: translateX(270px);
  transition: all .5s;
}

.woocommerce #openFilter.active {
  background: var(--head);
  border: 1px solid var(--card);
  color: var(--card);
}

.woocommerce .sidebar.active {
  transform: translateX(0px);
}