.store_filter {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 0;
	margin-bottom: 8px;
}

.store_sort {
	margin-right: 8px;
}
.store_sort select {
	padding: 11px 16px;
	background-color: var(--grey-light);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	border: none;
	font-size: 14px;
	line-height: 18px;

	outline: none;
/*	box-shadow: 0 1px 3px rgba(0,0,0,0.12);*/
	transition: box-shadow 0.3s, background-color 0.3s;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M7 10l5 5 5-5z" fill="%23555"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 30px;
}
.store_sort select:hover {
	outline: none;
	background-color: var(--color-secondary);
}
.store_sort select:focus {

}
.custom-select {
	position: relative;
}

.select-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	position: relative;
	padding: 11px 16px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 18px;
	background-color: var(--grey-light);
	cursor: pointer;
	white-space: nowrap;
}
.select-header:hover {
	background-color: var(--color-secondary);
}
.arrow {
	transform: rotate(90deg);
}
.custom-select.active .arrow {
	transform: rotate(270deg);
}
.select-options {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 250px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border-radius: 16px;
	background-color: white;
	z-index: 10;
	box-shadow: 0 5px 16px 0 #00000026;
}
.custom-select.active .select-options {
	display: block;
}
.select-options li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
}
.select-options li:hover {
	background-color: var(--color-secondary);
}
.select-options li:before {
	content: "";
	width: 20px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.select-options li.active:before {
	background-image: url("svg/check.svg");
}





.store_filter_price {
	position: relative;
}
.store_filter_price_title {
	gap: 8px;
	padding: 11px 16px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 18px;
	background-color: var(--grey-light);
	cursor: pointer;
}
.store_filter_price_title:hover {
	background-color: var(--color-secondary);
}
.store_filter_price_title.active {
	background-color: var(--color-secondary);
}
.store_filter_price_title svg {
	transform: rotate(90deg);
}
.store_filter_price_title.active svg {
	transform: rotate(270deg);
}
.price-range-container {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 250px;
	padding: 16px;
	border-radius: 16px;
	background-color: white;
	z-index: 10;
	box-shadow: 0 5px 16px 0 #00000026;
}
@media (max-width: 769px) {
	.price-range-container {
		right: 0;
		left: auto;
	}
}
.range-slider {
	position: relative;
	height: 24px;
	margin-bottom: 8px;
}
.price-slider {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 11px;
	height: 3px;
	background: none;
	pointer-events: none;
	z-index: 1;
}
}
#lower {
	z-index: 2;
}
#upper {
	z-index: 3;
}
.slider-track {
	position: absolute;
	left: 0;
	right: 0;
	top: 11px;
	height: 3px;
	background-color: var(--grey);
	border-radius: 8px;
}
.slider-range {
	position: absolute;
	height: 100%;
	background: var(--color-primary);
	border-radius: 3px;
}
.price-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-primary);
	cursor: pointer;
	pointer-events: auto;
}
.price-slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-primary);
	cursor: pointer;
}
.price-inputs {
	display: flex;
	justify-content: space-between;
	gap: 8px;
}
.input-group {
	flex: 1;
}
.price-input {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #CDCDCD;
	border-radius: 16px;
	font-size: 14px;
	line-height: 16px;
}
.price-input:focus {
	outline: none;
}


.store_filter_divider {
	margin: 0 24px;
	width: 1px;
	height: 24px;
	background-color: var(--color-secondary);
}


.store_filter_category {
	display: flex;
	align-items: center;
	gap: 8px;

	position: relative;
	display: block;
	width: 100%;
	overflow-x: hidden;
	user-select: none;
}
.category_item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	padding: 0 16px 0 8px;
	border-radius: 16px;
	border: 1px solid #CDCDCD;
	font-size: 14px;
	line-height: 16px;
	white-space: nowrap;
	cursor: pointer;
}
.category_item.active {
	border: 1px solid var(--color-primary);
}
.category_item:hover {
	background-color: var(--color-secondary);
}
.category_item img {
	display: block;
	width: 36px;
	height: 36px;
	max-width: inherit;
	border-radius: 8px;
}
.store_filter_category {

}
.filter_slider_arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	height: 100%;
}
.filter_slider_arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 100%;
	max-height: 40px;
	border: 1px solid #CDCDCD;
	border-radius: 16px;
	cursor: pointer;
}
.filter_slider_prev {
	left: 0;
	transform: rotate(180deg);
}
.filter_slider_next {
	right: 0;
}
.filter_slider {
	width: calc(100% - 90px);
}
.filter_slider .swiper-slide {
	width: auto !important;
}

.store_filter_arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin-left: 8px;
	border: 1px solid #CDCDCD;
	border-radius: 16px;
	cursor: pointer;
}
.store_filter_arrow.active {
	background-color: var(--grey-light);
	transform: rotate(180deg);
}
.move_left {
	margin-left: -100%;
}
@media (max-width: 769px) {
	.category_item {
		flex-wrap: wrap;
		flex-direction: column;
		padding: 8px;
	}
}
@media (max-width: 577px) {
	.filter_slider {
		width: 100%;
	}
	.filter_slider_arrows {
		display: none;
	}
}




.store_list {

}
.store_list_item {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
}
.store_list_item_image {
	position: relative;
	padding-bottom: 130%;
	background: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 16px 16px 8px 8px;
	cursor: pointer;
}
.store_list_item_price {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 4px 0 0 0;
	padding: 12px;
	border: 1px solid #CDCDCD;
	border-radius: 8px 8px 16px 16px;

	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 6%;
	text-transform: uppercase;

	cursor: pointer;
}
.store_list_item_price:hover {
	background-color: var(--grey);
}

.store_list_item_stickers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	position: absolute;
	top: 0;
	left: 0;
	padding: 8px;
	z-index: 2;
}
.store_list_item_sticker {
	display: flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 8px;
	gap: 4px;
	color: white;

	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 6%;
	text-transform: uppercase;
}
.danger {
	background-color: var(--danger);
}
.orange {
	background-color: var(--orange);
}
.green {
	background-color: var(--green);
}


.images_slider {

}
.images_slider_container {

}
.images_slider_child {
	position: absolute;
	height: 100%;
}
.images_slider_dots {
	display: flex;
	justify-content: center;
	position: relative;
	top: -12px;
	width: 90%;
	margin: auto;
}
.images_slider_dots_child {
	flex: 1;
	max-width: 25%;
	width: 20px;
	height: 4px;
	margin: 0 4px;
	border-radius: 2px;
	background: white;
	opacity: 50%;
	z-index: 5;
}
.images_slider_dots_child.selected {
	opacity: 1;
}


.bx-pagination .bx-pagination-container ul li.bx-active span {
	background: var(--color-primary);
}

div.btn_load_more {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}




.detail_item_cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(50, 50, 50, 0.5);
	z-index: 800;
	overflow-y: auto;
}
.detail_item_container {
	display: block;
	position: relative;
	top: 10vh;
	width: 60vw;
	margin: auto;
	padding: 16px 24px 16px 16px;
	border-radius: 24px;
	color: black;
	background-color: white;
	overflow-y: auto;
}
.detail_item_close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 8px;
	right: 8px;
	width: 40px;
	height: 40px;
	padding: 12px;
	border-radius: 16px;
	background-color: var(--grey-light);
	z-index: 1;
	cursor: pointer;
}
.catalog_detail {

}
.catalog_detail_block {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.catalog_detail_title {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
}
.catalog_detail_stickers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
}
.catalog_detail_sticker {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	border-radius: 8px;
	color: white;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 6%;
	text-transform: uppercase;
}
.catalog_detail_description {
	margin-top: 16px;
	font-size: 14px;
	line-height: 18px;
	color: var(--grey-dark);
}
.catalog_detail_price {
	margin-top: auto;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
}
.catalog_detail_button {
	margin-top: 16px;
}

.catalog_detail_social {
	margin-top: 8px;
}

.store_detail_slider {
	display: flex;
	height: 100%;
	min-height: 500px;
}
.store_detail_slider_main {
	flex: 1;
}
.store_detail_image {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	background: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px;
	cursor: pointer;
}
.store_detail_slider_items {
	position: relative;
	width: 40px;
	height: 100%;
	margin: 0 16px 0 0;
}
.store_detail_slider_items_container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 100%;
	margin: auto;
	justify-content: center;
	overflow: hidden;
}
.store_detail_slider_item {
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: 300ms all ease;
}
.store_detail_slider_item:hover {

}
.store_detail_image_min {
	position: relative;
	height: 100%;
	background: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 16px;
}
.store_detail_slider_control {

}
.slider_control {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 40px;
	min-width: 40px;
	height: 40px;
	border: 1px solid #CDCDCD;
	border-radius: 16px;
	cursor: pointer;
	transition: 300ms all ease;
}
.slider_control:hover {
	background: var(--grey-light);
}
.control_prev {
	top: 0;
	left: 0;
	transform: rotate(270deg);
}
.control_next {
	bottom: 0;
	right: 0;
	transform: rotate(90deg);
}
@media (max-width: 769px) {
	.detail_item_container {
		width: 100%;
		top: inherit;
	}
	.store_detail_slider {
		flex-direction: column;
	}
	.store_detail_slider_main {

	}
	.store_detail_slider_items {
		order: 2;
		width: 100%;
		height: 40px;
		margin: 16px 0;
	}
	.store_detail_slider_items_container {
		flex-direction: row;
	}
	.control_prev {
		transform: rotate(180deg);
	}
	.control_next {
		transform: rotate(0deg);
	}
}



.basket_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 10px;
	border-radius: 16px;
	background-color: var(--grey-light);
	z-index: 1;
	cursor: pointer;
}
.basket_icon svg {
	width: 100%;
	height: auto;
	max-width: 20px;
}
.basket_icon.basket_empty svg circle {
	fill: transparent;
}
@media (max-width: 769px) {
	.basket_icon {
		margin: 8px 12px;
	}
}

.basket_cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(50, 50, 50, 0.5);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.basket_container {
	position: fixed;
	top: 8px;
	right: 8px;
	bottom: 8px;
	width: 30vw;
	height: calc(100vh - 16px);
	padding: 24px 0 24px 24px;
	border-radius: 24px;
	background-color: white;
	z-index: 999;
}
.basket_close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: -48px;
	width: 40px;
	height: 40px;
	padding: 12px;
	border-radius: 16px;
	background-color: var(--grey-light);
	z-index: 1;
	cursor: pointer;
}
.basket_body {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 24px;
}
.basket_title {
	margin-bottom: 24px;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
}
.basket_form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}
.basket_form label {
	position: relative;
	width: 100%;
}
.basket_form label span {
	display: none;
}
.basket_form label .svg {
	display: flex;
	align-items: center;
	position: absolute;
	right: 16px;
	top: 0;
	height: 100%;
}
.basket_form input {
	border: 1px solid #CDCDCD;
	border-radius: 16px;
	padding: 11px 12px;
	font-size: 14px;
	line-height: 16px;
	outline: none !important;
	box-shadow: none !important;
}
.basket_form textarea {
	border: 1px solid #CDCDCD;
	border-radius: 16px;
	padding: 11px 12px;
	font-size: 14px;
	line-height: 16px;
	outline: none !important;
	box-shadow: none !important;
}
.basket_items {
	margin: 16px 0 auto;
}
.basket_item {
	display: flex;
	gap: 12px;
	margin: 0 0 20px;
	padding: 8px;
	border-radius: 16px;
	background-color: var(--color-secondary);
}
.basket_item_left {
	flex: 2;
	display: flex;
	flex-direction: column;
	padding: 8px;
}
.basket_item_title {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 6%;
	text-transform: uppercase;
}
.basket_item_price {
	display: flex;
	align-items: flex-end;
	margin-top: auto;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
}
.basket_item_total {
	margin-left: auto;
	font-size: 14px;
	line-height: 18px;
}
.basket_item_quantity {
	margin: auto 0;
	user-select: none;
}
.basket_item_quantity_control {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
}
.basket_item_quantity_control .quantity_control_input {
	padding: 5px 6px;
	border-radius: 8px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
}
.quantity_control_minus {
	padding: 2px 10px;
	cursor: pointer;
}
.quantity_control_plus {
	padding: 2px 10px;
	cursor: pointer;
}
.basket_item_right {
	flex: 1;
}
.basket_item_image {
	border-radius: 12px;
	overflow: hidden;
}
.basket_item_image img {
	width: 100%;
}
.basket_item_close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 16px;
	background-color: var(--grey-light);
	cursor: pointer;
}

.basket_total_price {
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
}

.agreement {

}
.agreement input {
	margin-right: 8px;
}

.policy_cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(50, 50, 50, 0.5);
	z-index: 1100;
	overflow-y: auto;
}
.policy_container {
	display: block;
	position: relative;
	top: 10vh;
	width: 60vw;
	margin: auto;
	padding: 16px 24px 16px 16px;
	border-radius: 24px;
	color: black;
	background-color: white;
	overflow-y: auto;
}
.policy_close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 8px;
	right: 8px;
	width: 40px;
	height: 40px;
	padding: 12px;
	border-radius: 16px;
	background-color: var(--grey-light);
	z-index: 1;
	cursor: pointer;
}

.basket_done {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}
@media (max-width: 769px) {
	.basket_container {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
	}
	.basket_close {
		left: auto;
		right: 0;
	}
}