.asf {
	--asf-black: #000;
	--asf-line: #a7a8aa;
	--asf-fill: #ebebeb;
	--asf-font: "Archivo", sans-serif;
	--asf-display: "Archivo Black", "Archivo", sans-serif;
	box-sizing: border-box;
	width: 100%;
	font-family: var(--asf-font);
}

.asf *, .asf *::before, .asf *::after {
	box-sizing: border-box;
}

.asf .asf__form {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 0;
	padding: 0;
}

.asf .asf__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.asf .asf__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 23px;
	height: 12px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: var(--asf-black);
	cursor: pointer;
	transition: transform .18s ease;
}

.asf .asf__toggle svg {
	display: block;
	width: 23px;
	height: 12px;
}

.asf .asf__title {
	margin: 0;
	font-family: var(--asf-display);
	font-weight: 400;
	font-size: 40px;
	line-height: 1.25;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--asf-black);
}

.asf .asf__group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.asf .asf__head {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	text-align: left;
	cursor: pointer;
}

.asf .asf__icon {
	position: relative;
	flex: none;
	width: 24px;
	height: 24px;
}

.asf .asf__icon::before, .asf .asf__icon::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 24px;
	height: 2px;
	margin-top: -1px;
	border-radius: 40px;
	background: var(--asf-black);
}

.asf .asf__icon::after {
	transform: rotate(90deg);
	transition: opacity .15s ease;
}

.asf .asf__group.is-open .asf__icon::after {
	opacity: 0;
}

.asf .asf__label {
	font-family: var(--asf-display);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	text-transform: none;
	color: var(--asf-black);
	white-space: nowrap;
}

.asf .asf__range {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-left: auto;
	font-family: var(--asf-font);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: -0.19px;
	color: var(--asf-black);
	white-space: nowrap;
}

.asf .asf__body {
	display: none;
	flex-direction: column;
	gap: 15px;
}

.asf .asf__group.is-open .asf__body {
	display: flex;
}

.asf .asf__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.asf .asf__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 10px 15px;
	border: 1px solid var(--asf-line);
	border-radius: 0;
	background: var(--asf-fill);
	cursor: pointer;
	user-select: none;
	transition: background .12s ease, border-color .12s ease, color .12s ease;
}

.asf .asf__chip input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.asf .asf__chip-label {
	font-family: var(--asf-font);
	font-weight: 500;
	font-size: 14px;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
	color: var(--asf-line);
	white-space: nowrap;
	transition: color .12s ease;
}

.asf .asf__chip.is-selected,
.asf .asf__chip:has(input:checked) {
	background: #fff;
	border-color: var(--asf-black);
}

.asf .asf__chip.is-selected .asf__chip-label,
.asf .asf__chip:has(input:checked) .asf__chip-label {
	color: var(--asf-black);
}

.asf .asf__chip:hover:not(.is-empty) {
	border-color: var(--asf-black);
}

.asf .asf__chip.is-empty {
	opacity: .5;
	cursor: not-allowed;
}

.asf .asf__scale {
	position: relative;
	width: 100%;
	height: 50px;
}

.asf .asf__scale-track {
	position: absolute;
	left: 0;
	right: 0;
	top: 12px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 31px;
	padding: 5px 10px;
	border-radius: 5px;
	background: var(--asf-fill);
}

.asf .asf__scale-step {
	flex: 0 0 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-family: var(--asf-font);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: -0.13px;
	text-align: center;
	text-transform: uppercase;
	color: var(--asf-line);
	cursor: pointer;
	transition: color .12s ease;
}

.asf .asf__scale-step:hover:not(:disabled) {
	color: var(--asf-black);
}

.asf .asf__scale-step.is-active {
	color: transparent;
}

.asf .asf__scale.is-empty .asf__scale-knob {
	display: none;
}

.asf .asf__scale-step.is-empty,
.asf .asf__scale-step:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.asf .asf__scale-knob {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 50px;
	padding: 10px;
	border: 2px solid var(--asf-line);
	background: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .16);
	transform: translate(-50%, -50%);
	transition: left .18s ease;
	pointer-events: none;
	font-family: var(--asf-font);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.18px;
	text-align: center;
	text-transform: uppercase;
	color: var(--asf-black);
}

.asf .asf__slider {
	position: relative;
	height: 24px;
	width: 100%;
}

.asf .asf__track, .asf .asf__fill {
	position: absolute;
	top: 50%;
	height: 4px;
	margin-top: -2px;
	border-radius: 4px;
}

.asf .asf__track {
	left: 0;
	right: 0;
	background: var(--asf-fill);
}

.asf .asf__fill {
	background: var(--asf-black);
}

.asf .asf__thumb {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 24px;
	margin: 0;
	padding: 0;
	background: none;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
}

.asf .asf__thumb::-webkit-slider-thumb {
	pointer-events: auto;
	width: 24px;
	height: 24px;
	border: 1px solid var(--asf-black);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.asf .asf__thumb::-moz-range-thumb {
	pointer-events: auto;
	width: 24px;
	height: 24px;
	border: 1px solid var(--asf-black);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
	cursor: pointer;
}

.asf .asf__thumb::-webkit-slider-runnable-track, .asf .asf__thumb::-moz-range-track {
	background: none;
	border: 0;
}

.asf .asf__inputs {
	display: flex;
	gap: 15px;
	width: 100%;
}

.asf .asf__input {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	gap: 15px;
	min-width: 0;
	height: 40px;
	margin: 0;
	border: 1px solid var(--asf-line);
	background: #fff;
}

.asf .asf__currency {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 100%;
	border-right: 1px solid var(--asf-line);
	font-family: var(--asf-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: rgba(0, 0, 0, .5);
}

.asf .asf__input input {
	width: 100%;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0 10px 0 0;
	border: 0;
	background: none;
	box-shadow: none;
	outline: none;
	font-family: var(--asf-font);
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	color: var(--asf-black);
	appearance: textfield;
	-moz-appearance: textfield;
}

.asf .asf__input input::-webkit-outer-spin-button, .asf .asf__input input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
}

.asf .asf__actions {
	display: flex;
	gap: 25px;
}

.asf .asf__apply, .asf .asf__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	min-height: 44px;
	padding: 10px 25px;
	border: 1px solid var(--asf-black);
	border-radius: 0;
	font-family: var(--asf-font);
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.asf .asf__apply {
	flex: 1 1 0;
	min-width: 0;
	background: var(--asf-black);
	color: #fff;
}

.asf .asf__clear {
	flex: 0 0 auto;
	padding: 10px 15px;
	border: 0;
	border-bottom: 1px solid var(--asf-black);
	background: none;
	color: var(--asf-black);
	white-space: nowrap;
}

.asf .asf__apply:hover {
	background: #282828;
	border-color: #282828;
	color: #fff;
}

.asf .asf__clear:hover {
	background: none;
	color: var(--asf-black);
	opacity: .6;
}

.asf-toolbar {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	width: 100%;
	padding: 50px 25px;
	background: #fff;
	font-family: "Archivo", sans-serif;
}

.asf-toolbar * {
	box-sizing: border-box;
}

.asf-toolbar .asf-toolbar__controls {
	display: flex;
	align-items: center;
	gap: 25px;
}

.asf-toolbar .asf-toolbar__sort, .asf-toolbar .asf-toolbar__view {
	display: flex;
	align-items: center;
	gap: 15px;
}

.asf-toolbar .asf-toolbar__label {
	font-family: "Archivo", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000;
	white-space: nowrap;
}

.asf-toolbar .asf-toolbar__select {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.asf-toolbar .asf-toolbar__caret {
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	width: 9px;
	height: 5px;
	margin-top: -2px;
	color: #000;
	pointer-events: none;
}

.asf-toolbar .asf-toolbar__select select {
	margin: 0;
	padding: 0 14px 0 0;
	line-height: 1.2;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	outline: none;
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.asf-toolbar .asf-toolbar__views {
	display: inline-flex;
	align-items: center;
}

.asf-toolbar .asf-toolbar__view-btn {
	display: block;
	width: 24px;
	height: 25px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	cursor: pointer;
	color: #a7a8aa;
	transition: color .12s ease;
}

.asf-toolbar .asf-toolbar__view-btn.is-active,
.asf-toolbar .asf-toolbar__view-btn:hover {
	background: none;
	color: #000;
}

.asf-toolbar .asf-toolbar__view-btn svg {
	display: block;
	width: 24px;
	height: 25px;
}

.asf-toolbar .asf-toolbar__count {
	font-family: "Archivo", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	text-transform: none;
	color: #000;
	white-space: nowrap;
}

.asf-grid {
	transition: opacity .2s ease;
}

.asf-grid.asf-is-loading {
	opacity: .45;
	pointer-events: none;
}

.asf-grid.asf-cols-2 .elementor-grid {
	grid-template-columns: repeat(2, 1fr) !important;
}

.asf-grid.asf-cols-4 .elementor-grid {
	grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1024px) {

.asf .asf__title {
		font-size: 28px;
		letter-spacing: 1px;
	}

.asf .asf__bar {
		min-height: 34px;
		padding: 25px 0;
	}

.asf .asf__toggle {
		display: flex;
	}

.asf.is-open .asf__toggle {
		transform: rotate(180deg);
	}

.asf .asf__group,
.asf .asf__actions {
		display: none;
	}

.asf.is-open .asf__group {
		display: block;
	}

.asf.is-open .asf__actions {
		display: flex;
	}

.asf-grid.asf-cols-4 .elementor-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 767px) {

.asf .asf__title {
		font-size: 28px;
	}

.asf {
		padding-left: 15px;
		padding-right: 15px;
	}

.asf .asf__label {
		font-size: 20px;
	}

.asf .asf__actions {
		gap: 15px;
	}

.asf .asf__apply, .asf .asf__clear {
		flex: 1 1 0;
		width: auto;
	}

.asf-toolbar {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px 15px;
		padding: 25px 15px;
	}

.asf-toolbar .asf-toolbar__controls {
		display: contents;
	}

.asf-toolbar .asf-toolbar__sort {
		order: 1;
		justify-content: center;
		width: 100%;
		gap: 10px;
	}

.asf-toolbar .asf-toolbar__count {
		order: 2;
		flex: 0 0 auto;
		font-size: 14px;
		line-height: 1.2;
	}

.asf-toolbar .asf-toolbar__view {
		order: 3;
		flex: 0 0 auto;
		gap: 15px;
	}

.asf-toolbar .asf-toolbar__label {
		font-size: 14px;
		line-height: 1.2;
	}

.asf-grid.asf-cols-4 .elementor-grid, .asf-grid.asf-cols-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

.asf-grid .elementor-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin: 0;
	padding: 50px 0;
	font-family: "Archivo", sans-serif;
}

.asf-grid .elementor-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-family: "Archivo", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #a7a8aa;
	text-decoration: none;
	transition: color .15s ease;
}

.asf-grid .elementor-pagination a.page-numbers:hover {
	color: #000;
}

.asf-grid .elementor-pagination .page-numbers.current {
	box-sizing: border-box;
	width: 40px;
	min-width: 40px;
	height: 24px;
	padding: 0 12px;
	border-radius: 5px;
	background: #000;
	color: #fff;
}

.asf-grid .elementor-pagination .page-numbers.prev, .asf-grid .elementor-pagination .page-numbers.next {
	position: relative;
	width: 12px;
	height: 22px;
	font-size: 0;
	color: transparent;
}

.asf-grid .elementor-pagination .page-numbers.prev {
	margin-right: 10px;
}

.asf-grid .elementor-pagination .page-numbers.next {
	margin-left: 10px;
}

.asf-grid .elementor-pagination .page-numbers.prev::before, .asf-grid .elementor-pagination .page-numbers.next::before {
	content: "";
	position: absolute;
	left: 1px;
	top: 50%;
	width: 9px;
	height: 9px;
	margin-top: -5px;
	border-left: 1.5px solid #000;
	border-bottom: 1.5px solid #000;
}

.asf-grid .elementor-pagination .page-numbers.prev::before {
	transform: rotate(45deg);
}

.asf-grid .elementor-pagination .page-numbers.next::before {
	left: auto;
	right: 1px;
	transform: rotate(-135deg);
}

.asf-grid .elementor-pagination span.page-numbers.prev, .asf-grid .elementor-pagination span.page-numbers.next {
	opacity: .3;
	pointer-events: none;
}

.asf-grid .elementor-pagination .elementor-screen-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

@media (max-width: 767px) {

.asf-grid .elementor-pagination {
		gap: 10px;
		padding: 30px 0;
	}
}


.e-con-inner:has(> .e-con > .elementor-widget .asf__form),
.e-con:has(> .e-con > .elementor-widget .asf__form) > .e-con-inner {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 50px;
}

.e-con:has(> .elementor-widget .asf__form) {
	flex: 0 0 335px;
	width: 335px;
	max-width: 335px;
	min-width: 0;
	padding: 0;
}

.e-con:has(> .elementor-widget .asf__form) > .elementor-widget,
.e-con:has(> .elementor-widget .asf__form) .elementor-widget-container,
.e-con:has(> .elementor-widget .asf__form) .elementor-shortcode {
	width: 100%;
	margin: 0;
	padding: 0;
}

.elementor-widget:has(.asf-toolbar),
.elementor-widget:has(.asf-toolbar) .elementor-widget-container,
.elementor-widget:has(.asf-toolbar) .elementor-shortcode {
	width: 100%;
	max-width: none;
}

.e-con:has(> .elementor-widget .asf__form) ~ .e-con {
	flex: 1 1 auto;
	width: auto;
	max-width: none;
	min-width: 0;
}

@media (max-width: 1024px) {

	.e-con-inner:has(> .e-con > .elementor-widget .asf__form),
	.e-con:has(> .e-con > .elementor-widget .asf__form) > .e-con-inner {
		flex-direction: column;
		gap: 25px;
	}

	.e-con:has(> .elementor-widget .asf__form),
	.e-con:has(> .elementor-widget .asf__form) ~ .e-con {
		flex: 0 0 auto;
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 767px) {

	.e-con:has(> .e-con-inner > .e-con > .elementor-widget .asf__form) {
		padding-left: 0;
		padding-right: 0;
	}

	.e-con:has(> .elementor-widget .asf__form) ~ .e-con {
		overflow-x: clip;
	}
}

.asf-progress {
	position: relative;
	width: 100%;
	height: 2px;
	margin: 0 0 15px;
	overflow: hidden;
	background: #ebebeb;
	opacity: 0;
	transition: opacity .2s ease;
}

.asf-progress.is-active {
	opacity: 1;
}

.asf-progress span {
	position: absolute;
	left: 0;
	top: 0;
	width: 40%;
	height: 100%;
	background: #000;
	transform: translateX(-100%);
}

.asf-progress.is-active span {
	animation: asf-slide 1.1s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes asf-slide {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(250%); }
}

.asf-grid {
	position: relative;
}

.asf-grid.asf-is-loading {
	opacity: 1;
	pointer-events: none;
}

.asf-grid.asf-is-loading > * {
	opacity: .3;
	transition: opacity .2s ease;
}

.asf-grid.asf-is-loading::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(255, 255, 255, .55);
}

.asf-grid.asf-is-loading::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 90px;
	z-index: 3;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	margin-left: -18px;
	border: 2px solid rgba(0, 0, 0, .15);
	border-top-color: #000;
	border-radius: 50%;
	animation: asf-spin .7s linear infinite;
}

@keyframes asf-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {

	.asf-progress.is-active span,
	.asf-grid.asf-is-loading::after {
		animation-duration: 0s;
	}
}
