/* 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;
}

.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;
}

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

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

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

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

.noUi-handle {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
}

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

.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: 18px;
}

.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	right: -17px;
	top: -6px;
}

.noUi-vertical {
	width: 18px;
}

.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	right: -6px;
	bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
	left: -17px;
	right: auto;
}

/* Styling;
  * Giving the connect element a border radius causes issues with using transform: scale
  */
.noUi-target {
	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;
}

.noUi-connect {
	background: #3FB8AF;
}

/* 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%);
	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%;
}

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

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



.catalog-article__link {
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	padding: 10px 17px;
	text-align: center;
	color: #1D1D1B;
	margin-right: 8px;
	border: 1px solid #DADADA;
	border-radius: 7px;
	transition: all 0.3s ease;
}

.catalog-article__link.active {
	color: #fff;
	background: #B3B3B3;
}

.catalog-article__link:hover {
	color: #fff;
	background: #B3B3B3;
}

.catalog__article {
	margin-top: 40px;
}

.catalog-article-all {
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	color: #595959;
}

.catalog-article-all img {
	margin-left: 10px;
}

.catalog-article__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.catalog__widget {
	width: 290px;
	border: 1px solid #DADADA;
	border-radius: 7px;
	padding: 23px 16px;
	padding-top: 0;
}

.catalog-widget__label {
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	color: #1D1D1B;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.catalog-widget__label.active .arrow {
	transform: rotate(180deg);
}

.catalog-widget__list {
	display: flex;
	margin-top: 22px;
	align-items: center;
}

.catalog-widget-label {
	display: flex;
	align-items: center;
	width: 50%;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	color: #9D9D9C;
	margin-right: 8px;
}

.catalog-widget-label:last-child {
	margin-right: 0;
}

.catalog-widget-label span {
	display: block;
	margin-right: 8px;
}

.catalog-widget__input {
	background: #FFFFFF;
	border: 1px solid #DADADA;
	border-radius: 7px;
	padding: 6px 12px;
	width: 100%;
}

.catalog-widget__input:first-child {
	margin-right: 8px;
}

.catalog-wideget___rage {
	margin-top: 22px;
}

.catalog-widget__item {
	padding-bottom: 29px;
	padding-top: 22px;
	border-bottom: 1px solid #DADADA;
}

.catalog-widget__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.catalog-widget__name {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	color: #1D1D1B;
	margin-bottom: 21px;
}

.catalog-widget__content {
	display: flex;
	flex-direction: column;
}

.catalog-widget__glob {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.catalog-widget__glob input {
	display: none;
}

.catalog-widget__block {
	position: relative;
}

.catalog-widget__block img {
	position: absolute;
	right: 0;
	top: 4px;
	cursor: pointer;
}

.input-checkbox {
	opacity: 0;
	position: absolute;
}

.catalog-widget__block .block {
	display: inline-block;
	margin-right: 10px;
	width: 16px;
	height: 16px;
	border: 1px solid #9D9D9C;
	border-radius: 2px;
	position: relative;
}

.block span {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

.block span:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	top: 45%;
	display: none;
	width: 5px;
	height: 9px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}

span.arrow-black:before {
	border-color: #000;
}

.input-checkbox:checked~.block {
	background: #a7a7a7;
}

.input-checkbox:checked~.block>span:before {
	display: block;
}

.catalog-widget__link {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: #9D9D9C;
	margin-top: 20px;
	display: block;
}

.input-checkbox[type="radio"]~.block {
	border-radius: 50%;
	border-color: #000;
	background-color: #fff;
}

.input-checkbox[type="radio"]:checked~.block>span:before {
	display: block;
	width: 8px;
	top: 50%;
	height: 8px;
	border-radius: 50%;
	background-color: #000;
	border-color: #000;
}

.catalog__container {
	display: flex;
	align-items: flex-start;
	margin-top: 35px;
}

.catalog__content {
	width: calc(100% - 290px);
	padding-left: 18px;
}

.catalog-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #EAEAEA;
	padding-bottom: 5px;
}

.catalog-filter__left-side {
	display: flex;
	align-items: center;
}

.catalog-filter__name {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: #1D1D1B;
	margin-right: 7px;
}

.catalog-filter__checkbox {
	display: flex;
	align-items: center;
}

.catalog-filter__checkbox label {
	margin-right: 10px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
	color: #969696;
	position: relative;
}

.catalog-filter__checkbox span {
	position: relative;
}

.catalog-filter__checkbox span::before {
	display: block;
	content: '';
	position: absolute;
	transition: all 0.4s ease;
	left: 0;
	right: 0;
	bottom: -6px;
	width: 0;
	height: 1px;
	background-color: #1E1E1E;
}

.catalog-filter__checkbox label:last-child {
	margin-right: 0;
}

.catalog-filter__checkbox input {
	display: none;
}

.catalog-filter__checkbox input:checked~span {
	color: #1D1D1B;
}

.catalog-filter__checkbox input:checked~span::before {
	width: 100%;
}

.catalog-filter__length {
	font-weight: 300;
	font-size: 14px;
	line-height: 1.2;
	color: #9D9D9C;
}

.catalog-wideget__drop {
	display: none;
}

.catalog__content .index-doors__width {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
}

.catalog__content .index-doors__wrapper {
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: -30px;
}

.catalog-filter__button {
	margin-top: 40px;
}

.catalog-filter__button .btn_default {
	width: 100%;
}

.noUi-horizontal .noUi-handle {
	width: 12px;
	height: 12px;
	background: #3C3C3B;
	border-radius: 0;
	border: none;
	box-shadow: none;
	right: -8px;
	top: -5px;
	cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
	display: none;
}

.noUi-connect {
	background: #1D1D1B;
	top: -1px;
}

.noUi-connects {
	border-radius: 15px;
	height: 4px;
}

.noUi-target {
	border-radius: 15px;
	height: 4px;
}

.catalog-btn-filter {
	display: none;
}

@media (max-width: 1150px) {
	.catalog__content .index-doors__width {
		width: 50%;
	}
}

@media (max-width: 990px) {
	.catalog__container {
		flex-direction: column;
	}

	.catalog-widget-close {
		position: absolute;
		right: 20px;
		top: 10px;
		width: 15px;
		height: 15px;
	}

	.catalog-widget-close span {
		position: absolute;
		left: 0;
		right: 0;
		top: 6px;
		height: 2px;
		background-color: #ccc;
		transform: rotate(45deg);
	}

	.catalog-widget-close span:last-child {
		transform: rotate(-45deg);

	}

	.catalog__widget {
		padding: 20px;
		width: 100%;
		position: fixed;
		left: 0;
		top: 105px;
		overflow: scroll;
		bottom: 64px;
		z-index: 2;
		transition: all 0.4s ease;
		background-color: #fff;
		transform: translateX(-100%);
	}

	.catalog__widget.active {
		transform: translateX(0);
	}

	.catalog__content {
		width: 100%;
		padding-left: 0;
	}

	.catalog-btn-filter {
		display: inline-flex;
		margin-bottom: 10px;
		font-weight: 400;
		font-size: 14px;
		line-height: 1;
		padding: 10px 17px;
		text-align: center;
		color: #1D1D1B;
		margin-right: 8px;
		border: 1px solid #DADADA;
		border-radius: 7px;
		transition: all 0.3s ease;
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.catalog-btn-filter img {
		width: 15px;
		margin-right: 10px;
	}
}

@media (max-width: 600px) {
	.catalog-filter {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.catalog-filter__left-side {
		margin-top: 10px;
	}

	.catalog__content .index-doors__width {
		width: 100%;
	}

	.catalog__widget {
		top: 72px;
	}
}

















/*



.index-doors__width {
  width: 33.3%;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 60px;
}

.index-doors__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-left: -70px;
  margin-right: -70px;
  margin-top: 23px;
  margin-bottom: -60px;
}

.catalog-item {
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 7px;
  padding: 15px;
  transition: all 0.4s ease;
}

.catalog-item .swiper-pagination {
  opacity: 0 !important;
  transition: all 0.4s ease;
}

.catalog-item .swiper-button-prev,
.catalog-item .swiper-button-next {
  opacity: 0;
  transition: all 0.4s ease;

}

.catalog-item .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 22px !important;
}


.catalog-item .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 22px !important;
}

.catalog-item:hover {
  box-shadow: 2px 5px 15px 1px rgba(0, 0, 0, 0.25);
}

.catalog-item:hover .swiper-pagination {
  opacity: 1 !important;
}

.catalog-item:hover .swiper-button-prev,
.catalog-item:hover .swiper-button-next {
  opacity: 1;
}

.catalog-item__slider {
  position: relative;
}



.setcolors a {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  margin-right: 9px;
}


.setcolors a:last-child {
  margin-right: 9px;
}

.catalog-item__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-item__price {
  font-family: 'Arial';
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: #1D1D1B;
}

.catalog-item__basket {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EAEAEA;
}

.catalog-item__block span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #9D9D9C;
  margin-bottom: 6px;
}

.catalog-item__block span:last-child {
  margin-bottom: 0;
}

span.setcolors {
  display: flex;
  align-items: center;
}

.setcolors>span {
  display: inline-flex;
  margin-right: 11px;
  margin-bottom: 0;
}

.catalog-item__under {
  margin-top: 25px;
}

.catalog-item__link {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #9D9D9C;
  border-bottom: 1px dashed #9D9D9C;
}

.catalog-item__top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}

.catalog-item__art {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 22px 9px 11px;

  font-family: 'Arial';
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;

  border: 1px solid #DADADA;
  color: #1D1D1B;
}

.catalog-item-slider__item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-item .swiper-pagination {
  position: relative;
  top: 0;
  opacity: 1;
}

.catalog-item .swiper-pagination-bullet {
  width: 16px;
  height: 2px;
  background: rgba(60, 60, 59, 0.3);
  border-radius: 10px;
  opacity: 1;
  transition: all 0.4s ease;
}

.catalog-item .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  background: #3C3C3B;
}

.catalog-item__like img {
  display: none;
}

.catalog-item__like img.active {
  display: block;
}

.catalog-item__like.heart-dark img.active {
  display: none;
}

.catalog-item__like.heart-dark img {
  display: block;
}

.index-doors__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.catalog-item__name {
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: #1D1D1B;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .index-doors__width {
    padding-left: 30px;
    padding-right: 30px;
  }

  .index-doors__wrapper {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (max-width: 900px) {
  .index-doors__width {
    width: 50%;
  }

  .catalog-item {
    border: 1px solid #D1D1D1;
  }

  .index-doors__width {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;

  }

  .index-doors__wrapper {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }
}

@media (max-width: 600px) {
  .catalog-item__name {
    font-size: 18px;
  }

  .catalog-item__under {
    margin-top: 15px;
  }

  .catalog-item .swiper-button-next,
  .catalog-item .swiper-button-prev {
    opacity: 1;
  }

  .catalog-item .swiper-button-next,
  .catalog-item .swiper-button-prev {
    opacity: 1;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    opacity: 1 !important;
  }

  .catalog-item:hover {
    box-shadow: none
  }

  .index-doors__button {
    margin-top: 30px;
  }
}

@media (max-width: 500px) {
  .index-doors__width {
    width: 100%;
  }
}




*/










.catalog-filter__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.pagination-arrow {
  width: 40px;
  height: 40px;
  background: rgba(250, 250, 250, 0.5);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__content {
  display: flex;
  align-items: center;
}

.pagination__content a {
  margin-right: 7px;
  background: #FAFAFA;
  border-radius: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3C3C3B;
  width: 40px;
  height: 40px;
}

.pagination__content a.active {
  background-color: #BFBFBF;
  color: #fff;
}

.pagination__content a:last-child {
  margin-right: 0;
}

.pagination-all span {
  width: 4px;
  height: 4px;
  background: #EAEAEA;
  margin-right: 4px;
}

.pagination-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination-all span:last-child {
  margin-right: 0;
}

.pagination-arrow-l {
  margin-right: 19px;
}

.pagination-arrow-r {
  margin-left: 19px;
}


@media (max-width: 500px) {
  .pagination__content a {
    width: 30px;
    height: 30px;
  }

  .pagination-arrow {
    width: 30px;
    height: 30px;
  }

  .pagination-arrow-r {
    margin-left: 10px;
  }

  .pagination-arrow-l {
    margin-right: 10px;
  }

  .pagination__content a {
    margin-right: 3px;
  }
}