.btn_add_favorite {
	border: none;
	outline: none;
	box-shadow: none;
	padding: 0;
	background-color: transparent;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M2 9.1371C2 14 6.01943 16.5914 8.96173 18.9109C10 19.7294 11 20.5 12 20.5C13 20.5 14 19.7294 15.0383 18.9109C17.9806 16.5914 22 14 22 9.1371C22 4.27416 16.4998 0.825464 12 5.50063C7.50016 0.825464 2 4.27416 2 9.1371Z' fill='%23ffffff' stroke='%236F6F6F' stroke-width='2' /%3E%3C/svg%3E ");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.btn_add_favorite.active {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M2 9.1371C2 14 6.01943 16.5914 8.96173 18.9109C10 19.7294 11 20.5 12 20.5C13 20.5 14 19.7294 15.0383 18.9109C17.9806 16.5914 22 14 22 9.1371C22 4.27416 16.4998 0.825464 12 5.50063C7.50016 0.825464 2 4.27416 2 9.1371Z' fill='%23F26363' stroke='%23F26363' stroke-width='0' /%3E%3C/svg%3E ")!important;
}
@media (min-width: 970px) {
	.btn_add_favorite:not(.active):hover {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M2 9.1371C2 14 6.01943 16.5914 8.96173 18.9109C10 19.7294 11 20.5 12 20.5C13 20.5 14 19.7294 15.0383 18.9109C17.9806 16.5914 22 14 22 9.1371C22 4.27416 16.4998 0.825464 12 5.50063C7.50016 0.825464 2 4.27416 2 9.1371Z' fill='%23ffffff' stroke='%23F26363' stroke-width='2' /%3E%3C/svg%3E ");
	}
}


@keyframes rotate {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}

.gifts_catalog {
	overflow: unset;
	background: var(--grey2);
}
/*
.gifts_catalog .filter_container .filter_loader {
	text-align: center;
	border-radius: 10px;
	width: 102%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1%;
	right: 0;
	z-index: -1;
	opacity: 0;
	padding: 80px 0;
	background-color: var(--white);
	transition: opacity .3s linear, z-index 4s;
}а
.gifts_catalog .filter_container .filter_loader .icon {
	top: 50px;
	position: sticky;
	animation: rotate 1s linear infinite;
}
.gifts_catalog .filter_container.load .filter_loader {
	z-index: 1;
	opacity: .8;
	transition: opacity .3s linear, z-index 0s;
}
*/
.gifts_catalog .dropdown_sort_filter input {
	display: none;
}
.gifts_catalog .dropdown_sort_filter .dropdown-item{
	display: flex;
	align-items: center;
	color: var(--black);
	padding: 5px 8px;
	cursor: pointer;
}
.gifts_catalog .dropdown_sort_filter .dropdown-item:active {
	background-color: var(--white);
}
.gifts_catalog .dropdown_sort_filter .dropdown-item .radio {
	content: '';
	width: 6px;
	height: 6px;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--red);
	opacity: 0;
	margin-right: 8px;
}
.gifts_catalog .dropdown_sort_filter .dropdown-item input:checked + .radio {
	opacity: 1;
}
.gifts_catalog .filter_container .mobile_block {
	display: none;
}
.gifts_catalog .filter_block {
	z-index: 4; /* Нужно для отображения кнопки filters-float-btn */
}
.gifts_catalog .filter_block .sticky_block{
	position: sticky;
	padding: 20px 0;
	transition: unset;
}
.gifts_catalog .filter_block .filter_container{
	border-radius: 10px;
	padding: 5px 15px;
	/*background: rgba(170,170,170,0.1);*/
	background: #fff;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.gifts_catalog .filter_block .filter_container .category_catalog_filter {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	margin-bottom: 40px;
}
.gifts_catalog .filter_block .filter_container .category_catalog_filter a {
	width: 100%;
}
.gifts_catalog .filter_block .price_filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 10px;
	margin-bottom: 10px;
}
.gifts_catalog .filter_block .price_filter .name_filter {
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}
.gifts_catalog .filter_block .price_filter .price_itm {
	background: var(--grey2);
	border-radius: 10px;
	margin-right: 5px;
	display: flex;
	align-items: center;
	padding: 10px 10px;
	width: calc(50% - 5px);
	gap: 5px;
}
.gifts_catalog .filter_block .price_filter .price_itm:last-child {
	margin-right: 0px;
}
.gifts_catalog .filter_block .price_filter .price_itm input {
	margin: 0;
	transition: none;
	padding: 0;
	background: transparent;
	color: var(--red);
	font-weight: 600;
	flex: 1;
	border-radius: 0;
	width: 100%;
	border: transparent;
	white-space: nowrap;
}
.gifts_catalog .filter_block .price_filter .price_itm[data-placeholder]:before {
	content: attr(data-placeholder);
}
@supports not (inset: 0) {
	.gifts_catalog .filter_block .price_filter .price_itm[data-placeholder]:before {
		margin-right: 5px;
	}
}
.gifts_catalog .filter_block .price_filter .price_itm[data-currency]:after {
	content: attr(data-currency);
}
.gifts_catalog .filter_block .price_filter .clean_filter_price {
	margin-top: 16px;
	text-align: left;
	width: 100%;
}



.gifts_catalog .filter_block .amount_filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 10px;
	margin-bottom: 10px;
}
.gifts_catalog .filter_block .amount_filter .name_filter {
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}
.gifts_catalog .filter_block .amount_filter .amount_itm {
	background: var(--grey2);
	border-radius: 10px;
	margin-right: 5px;
	display: flex;
	align-items: center;
	padding: 10px 10px;
	width: 100%;
	gap: 5px;
}
.gifts_catalog .filter_block .amount_filter .amount_itm:last-child {
	margin-right: 0px;
}
.gifts_catalog .filter_block .amount_filter .amount_itm input {
	margin: 0;
	transition: none;
	padding: 0;
	background: transparent;
	color: var(--red);
	font-weight: 600;
	flex: 1;
	border-radius: 0;
	width: 100%;
	border: transparent;
	white-space: nowrap;
}
.gifts_catalog .filter_block .amount_filter .amount_itm[data-placeholder]:before {
	content: attr(data-placeholder);
}
@supports not (inset: 0) {
	.gifts_catalog .filter_block .amount_filter .amount_itm[data-placeholder]:before {
		margin-right: 5px;
	}
}
.gifts_catalog .filter_block .amount_filter .amount_itm[data-currency]:after {
	content: attr(data-currency);
}

.gifts_catalog .filter_block .filter_itm {
	margin-top: 10px;
	margin-bottom: 10px;
}
.gifts_catalog .filter_block .filter_itm .name_filter {
	display: block;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 20px;
}
.gifts_catalog .filter_block .filter_itm_block_check {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 4px 8px;
	border-radius: 5px;
	transition: .4s;
}

.gifts_catalog .filter_block .filter_itm_block_check:last-child {
	margin-bottom: 0;
}
.gifts_catalog .filter_block .filter_itm_block_check.itm_hide {
	max-height: 0px;
	opacity: 0;
}
.gifts_catalog .filter_block .filter_itm.open .filter_itm_block_check.itm_hide {
	max-height: 100px;
	opacity: 1;
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-input[type=checkbox] {
	margin: 0;
	width: 12px;
	height: 12px;
	border-radius: 0.15em;
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-input[type=checkbox]:focus-visible, .gifts_catalog .filter_block .filter_itm_block_check .form-check-input[type=checkbox]:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0,0,0,.25);
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-label {
	padding-left: 8px;
	width: 100%;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-label:hover, .gifts_catalog .filter_block .filter_itm_block_check:hover, .gifts_catalog .filter_block .form-check-input:hover {
	color: var(--black);
	cursor: pointer;
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-label .name {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-label .count {
	color: var(--grey3);
	display: flex;
	min-width: 16px;
	justify-content: flex-end;
	position: relative;
	transition: .4s all linear;
}
.gifts_catalog .filter_container.load .filter_itm_block_check .form-check-label .count {
	color: var(--white);
}
.gifts_catalog .filter_block .filter_itm_block_check .form-check-label .count:before {
	content: '';
	transition: .4s all linear;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35' class='icon'%3e%3ccircle cx='50%25' cy='50%25' r='16' fill='none' stroke='%23DB3732' stroke-dasharray='90' stroke-width='3'%3e%3cpath attributeName='transform' values='0 17.5 17.5;360 17.5 17.5'%3e%3c/path%3e%3c/circle%3e%3c/svg%3e");
	background-size: contain;
	width: 15px;
	height: 15px;
	opacity: 0;
	position: absolute;
	margin: auto;
	animation: rotate 1s linear infinite;
}
.gifts_catalog .filter_container.load .filter_itm_block_check .form-check-label .count:before {
	opacity: 1;
}
.gifts_catalog .filter_block .filter_itm_block_check:hover {
	background: var(--grey2);
}
.gifts_catalog .filter_block .filter_itm_block_check:has(.form-check-input:checked) {
}
.gifts_catalog .filter_block .view_all{
	background: transparent;
	border: transparent;
	text-decoration: underline; text-decoration-skip-ink: none;
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
}
.gifts_catalog .filter_block .filter_itm .view_all:before{
	content: attr(data-text-open);
}
.gifts_catalog .filter_block .filter_itm.open .view_all:before{
	content: attr(data-text-close);
}
.gifts_catalog .filter_block .view_all:hover {
	color: var(--black);
}
.gifts_catalog .filter_block .filter_itm.drop_down {
	margin-top: 0;
	border-bottom: 1px dashed var(--grey3);
}
.gifts_catalog .filter_block .filter_itm.drop_down .name_filter {
	font-weight: 600;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0px;
	border-radius: 0px;
	font-size: 14px;
	position: relative;
	margin-bottom: 0;
	transition: .4s all linear;
}

.gifts_catalog .filter_block .filter_itm.drop_down .name_filter:before {
	content: attr(data-count-selected);
	order: 1;
	margin-left: auto;
	opacity: 0;
	text-align: center;
	transition: 0.3s all linear;
	background: var(--red);
	border-radius: 100%;
	padding: 1.5px;
	color: #fff;
	font-size: 10px;
	width: 18px;
	height: 18px;
	margin-right: 5px;
	transform: scale(0.5);
}
.gifts_catalog .filter_block .filter_itm.drop_down.view_count .name_filter:before {
	opacity: 1;
	transform: scale(1);
}
.gifts_catalog .filter_block .filter_itm.drop_down .name_filter:after {
	content: '';
	order: 2;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' id='arrow-down-16.svg'%3E%3Cpath fill='none' stroke='currentColor' stroke-width='1.5' d='m12 6-4 4-4-4'%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
	transition: .3s all linear;
}
@media (min-width: 970px) {
	.gifts_catalog .filter_block .filter_itm.drop_down .name_filter:hover {
		color: var(--red);
	}
}
.gifts_catalog .filter_block .filter_itm.drop_down.open .name_filter {
	transition: .4s all linear;
	color: var(--red);
}
.gifts_catalog .filter_block .filter_itm.drop_down.open .name_filter:after {
	transform: rotate(180deg);
}
.gifts_catalog .filter_block .filter_itm.drop_down .list_itm {
	max-height: 0px;
	opacity: 0;
	overflow: hidden;
	transition: .4s all linear;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch; 
	padding-right: 5px;
}

.gifts_catalog .filter_block .filter_itm.drop_down .list_itm::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
.gifts_catalog .filter_block .filter_itm.drop_down .list_itm::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 10px; 
}
.gifts_catalog .filter_block .filter_itm.drop_down .list_itm::-webkit-scrollbar-thumb {
	background-color: var(--grey2);
	border-radius: 10px;
}
.gifts_catalog .filter_block .filter_itm.drop_down .list_itm::-webkit-scrollbar-thumb:hover {
	background-color: transparent; 
}

.gifts_catalog .filter_block .filter_itm.drop_down.open .list_itm{
	opacity: 1;
	max-height: calc(29px * 15);
}
.gifts_catalog .filter_block .btn_submit_filter {
	width: 80%;
	margin-top: 20px;
	margin-bottom: 16px;
}
.gifts_catalog .filter_block .view_all{
	background: transparent;
	border: transparent;
	text-decoration: underline; text-decoration-skip-ink: none;
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
}
.gifts_catalog .filter_block .view_all:hover {
	color: var(--black);
}

.gifts_catalog .btn[class*=clean_filter] {
	background: transparent;
	border: transparent;
	text-decoration: underline; text-decoration-skip-ink: none;
	font-size: 16px;
	padding: 0;
	font-weight: 400;
}
.gifts_catalog .btn[class*=clean_filter]:focus {
	box-shadow: none;
}
.gifts_catalog .btn[class*=clean_filter]:hover {
	color: var(--black);
}
.gifts_catalog .btn.clean_filter_all {
	margin: 10px 0;
	text-decoration: none;
	display: flex;
	justify-content: center;
}
.gifts_catalog .btn.clean_filter_all > span {
	position: relative;
	padding-bottom: 2px;
}
.gifts_catalog .btn.clean_filter_all > span:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	border-bottom: 1px dashed var(--red);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.gifts_catalog .btn.clean_filter_all:hover > span:before {
	width: 30%;
}
.gifts_catalog .filters-float-btn {
	top: 20px;
	background: var(--red);
	border: none;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	height: 42px;
	line-height: 42px;
	outline: none;
	position: absolute;
	right: -95px;
	text-align: center;
	width: 100px;
	transition: top 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s; /* Изменение здесь */
	opacity: 0;
	visibility: hidden;
}
.gifts_catalog .filters-float-btn:after {
	content: attr(data-label);
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
.gifts_catalog .filters-float-btn:before {
	content: "";
	background: var(--red);
	display: block;
	width: 22px;
	height: 22px;
	left: -3px;
	position: absolute;
	top: 10px;
	transform: rotate(135deg);
	z-index: 0;
}
.gifts_catalog .filters-float-btn.view {
	opacity: 1;
	visibility: visible;
	transition: top 0.4s ease, opacity 0.4s ease; 
}
.gifts_catalog .filter_block .filter_container .btn_block {
	display: flex;
	flex-direction: column;
}
@media (max-width: 992px) {
	.gifts_catalog .filters-float-btn {
		display: none;
	}
	.gifts_catalog .filter_block .sticky_block {
		position: unset;
		padding: 0;
	}
	.gifts_catalog .filter_container .mobile_block
	{
		display: flex;
		justify-content: space-between;
		margin-bottom: 5px;
		align-items: center;
	}
	.gifts_catalog .filter_container .mobile_block .name_block {
		font-size: 25px;
		width: 100%;
		font-weight: 900;
		color: var(--red);
	}
	.gifts_catalog .filter_container .mobile_block .mobile_close_btn {
		border-bottom: 1px dashed var(--red);
		border-radius: 0;
		padding: 0;
	}
	.gifts_catalog .filter_block .filter_container {
		position: fixed;
		top: 0;
		left: -100vw;
		background: #fff;
		z-index: 99;
		padding: 16px;
		overflow: scroll;
		width: 100%;
		height: 100%;
		padding-bottom: 110px;
		transition: .4s all linear;
	}
	.gifts_catalog .filter_container.open {
		left: 0vw;
	}
	.gifts_catalog .filter_block .filter_itm.drop_down .name_filter {
		width: 100%;
	}
	.gifts_catalog .filter_block .filter_container .btn_block {
		background: var(--white);
		position: fixed;
		z-index: 1;
		width: 100%;
		left: -100vw;
		bottom: 0px;
		padding: 10px;
		padding-top: 0;
		transition: .4s all linear;
	}
	.gifts_catalog .filter_block .filter_container.open .btn_block {
		left: 0vw;
	}
}

.gifts_catalog .product_block {
	padding-top: 20px;
	padding-bottom: 20px;
}
.gifts_catalog .product_block .name_block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.gifts_catalog .product_block .name_block .name {
	font-size: 30px;
	font-weight: bold;
	margin: 0;
}
.gifts_catalog .product_block .name_block .open_filter {
	display: none;
}
@media (max-width: 992px) {
	.gifts_catalog .product_block .name_block .name {
		font-size: 25px;
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	.gifts_catalog .product_block .name_block .open_filter {
		font-size: 14px;
		display: flex;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		cursor: pointer;
		background: var(--white);
		color: var(--black);
		border-radius: 10px;
		font-weight: bold;
		position: relative;
		border: none;
		text-align: center;
		padding: 8px 20px;
		align-items: center;
		justify-content: center;
	}
	.gifts_catalog .product_block .name_block .open_filter:before {
		content: '';
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 8.4375V16.875' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 3.125V5.3125' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 8.4375C10.8629 8.4375 11.5625 7.73795 11.5625 6.875C11.5625 6.01206 10.8629 5.3125 10 5.3125C9.13706 5.3125 8.4375 6.01206 8.4375 6.875C8.4375 7.73795 9.13706 8.4375 10 8.4375Z' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.625 14.6875V16.875' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.625 3.125V11.5625' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.625 14.6875C16.4879 14.6875 17.1875 13.9879 17.1875 13.125C17.1875 12.2621 16.4879 11.5625 15.625 11.5625C14.7621 11.5625 14.0625 12.2621 14.0625 13.125C14.0625 13.9879 14.7621 14.6875 15.625 14.6875Z' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.375 12.1875V16.875' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.375 3.125V9.0625' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.375 12.1875C5.23794 12.1875 5.9375 11.4879 5.9375 10.625C5.9375 9.76206 5.23794 9.0625 4.375 9.0625C3.51206 9.0625 2.8125 9.76206 2.8125 10.625C2.8125 11.4879 3.51206 12.1875 4.375 12.1875Z' stroke='%23DB3732' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
		width: 20px; 
		height: 20px;
		margin-right: 5px;
	}
}

.gifts_catalog .btn_pagination_block {
	display: flex;
	justify-content: space-between;
	margin-top: 36px;
	transition: .2s all;
}

.gifts_catalog .container_product {
	min-height: 0vh;
	position: relative;
	transition: height .3s linear;
}
.gifts_catalog .container_product.load_page  {
	min-height: 100vh;
}
.gifts_catalog .container_product.load .btn_pagination_block {
	opacity: 0;
	z-index: -1;
}


.gifts_catalog .selected_filter_box {
	transition: .1s all linear;
	margin-bottom: 10px;
	opacity: 0;
}
.gifts_catalog .selected_filter_box.view {
	opacity: 1;
}
.gifts_catalog .selected_filter_container {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	align-items: center;
}
.gifts_catalog .selected_filter_container .selected_filter_itm {
	margin-top: 5px;
	margin-right: 5px;
}
.gifts_catalog .selected_filter_container .selected_filter_itm .container_filter_itm {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 5px 10px;
	background: var(--white);
	border-radius: 10px;
	font-size: 16px;
	position: relative;
	overflow: hidden;
	transition: .1s all linear;
	opacity: 1;
}
.gifts_catalog .selected_filter_container .selected_filter_itm.remove, .gifts_catalog .selected_filter_container .selected_filter_itm.remove .container_filter_itm {
	padding: 0;
	opacity: 0;
}
.gifts_catalog .selected_filter_container .selected_filter_itm .name_itm {
	color: var(--grey3);
	font-size: 12px;
	margin-right: 5px;
}
.gifts_catalog .selected_filter_container .selected_filter_itm .val_itm {
	font-size: 14px;
	font-weight: bold;
	margin-right: 5px;
}
@media (max-width: 992px) {
	.gifts_catalog .selected_filter_container .selected_filter_itm .name_itm {
		font-size: 11px;
	}
	.gifts_catalog .selected_filter_container .selected_filter_itm .val_itm {
		font-size: 12px;
	}
}
.gifts_catalog .selected_filter_container .selected_filter_itm .remove_itm {
	transition: .4s all linear;
	background: transparent;
	border: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
	border-radius: 100px;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M11 1L1 11' stroke='%236F6F6F' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 1L11 11' stroke='%236F6F6F' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.gifts_catalog .selected_filter_container .selected_filter_itm .remove_itm:hover {
	transform: rotate(180deg);
}
.gifts_catalog .selected_filter_container .selected_filter_itm .clean_filter_all {
	padding: 0;
	padding-bottom: 2px;
	margin-left: 5px;
	line-height: 130%;
	font-size: 16px;
	background: transparent;
	border: transparent;
	position: relative;
}
.gifts_catalog .selected_filter_container .selected_filter_itm .clean_filter_all:hover {
	color: var(--Text_Dim_gray);
}
.gifts_catalog .selected_filter_container .selected_filter_itm .clean_filter_all:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	border-bottom: 1px dashed var(--red);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.gifts_catalog .selected_filter_container .selected_filter_itm .clean_filter_all:hover:before {
	width: 30%;
}

.gifts_catalog .contains_items_product {
	margin-right: -5px;
	margin-left: -5px;
}
.gifts_catalog .contains_items_product .gifts_item {
	padding: 5px;
}
.gifts_catalog .contains_items_product .gifts_item .background{
	background: #fff;
	border: 0;
	padding: 10px;
	border-radius: 10px;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}
.gifts_catalog .contains_items_product .gifts_item .gift_img_block {
	min-height: 214px;
	height: 214px;
	width: 214px;
	display: flex;
	margin: 0 auto;
	margin-bottom: 10px;
	max-width: 100%;
	position: relative;
}
.gifts_catalog .contains_items_product .gifts_item .gift_img_block:before{
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	position: absolute;
	z-index: 1;
	transition: all .3s linear, visibility .8s linear;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35'%3E%3Ccircle cx='50%25' cy='50%25' r='16' fill='none' stroke='%23272727' stroke-dasharray='90' stroke-width='3'%3E%3Cpath attributeName='transform' values='0 17.5 17.5;360 17.5 17.5'%3E%3C/path%3E%3C/circle%3E%3C/svg%3E");
	background-size: contain;
	animation: rotate 1s linear infinite;
}
.gifts_catalog .contains_items_product .gifts_item .product-img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	z-index: 1;
}
.gifts_catalog .contains_items_product .gifts_item .product-img:not(.loaded) {
	opacity: .5;
	z-index: 0;
}
.gifts_catalog .contains_items_product .gifts_item .card_product_info {
	/*height: 100%;*/
	margin-top: auto;
	display: flex;
	flex-direction: column;
}
.gifts_catalog .contains_items_product .gifts_item .name_product {
	font-size: 13px;

	min-height: 43px;
	/*color: var(--black);*/
	color: var(--red);
	font-weight: bold;
	line-height: 1.1;
	text-decoration: none;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	transition: .4s all linear;
	margin-bottom: 8px;
}
.gifts_catalog .contains_items_product .gifts_item .name_product:hover {
	color: var(--red);
}
.gifts_catalog .contains_items_product .gifts_item .property_items {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	margin-bottom: 8px;
}
.gifts_catalog .contains_items_product .gifts_item .property_items .name {
	margin-right: 3px;
	color: var(--grey3);
}
.gifts_catalog .contains_items_product .gifts_item .property_items .value {
	font-weight: bold;
}
.gifts_catalog .contains_items_product .gifts_item .price {
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}
.gifts_catalog .contains_items_product .gifts_item .price:before {
	content: '';
	display: inline-block;
	height: 14px;
	width: 20px;
	background-image: url(../images/price.svg);
	background-repeat: no-repeat;
	background-size: auto 95%;
	background-position: center;
	margin-right: 5px;
}
.gifts_catalog .contains_items_product .gifts_item .price .red {
	margin-right: 4px;
}
.gifts_catalog .contains_items_product .gifts_item .group_gift {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 5px;
	box-sizing: content-box;
	margin-top: 8px;
	margin-bottom: 8px;
}
.gifts_catalog .contains_items_product .gifts_item .group_gift .group_item_gift {
	border: 1px solid var(--grey3);
	border-radius: 5px;
	overflow: hidden;
	background: transparent;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.gifts_catalog .contains_items_product .gifts_item .group_gift .group_item_gift:before {
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	max-width: 50%;
	max-height: 50%;
	position: absolute;
	z-index: 1;
	transition: all .3s linear, visibility .8s linear;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35'%3E%3Ccircle cx='50%25' cy='50%25' r='16' fill='none' stroke='%23272727' stroke-dasharray='90' stroke-width='3'%3E%3Cpath attributeName='transform' values='0 17.5 17.5;360 17.5 17.5'%3E%3C/path%3E%3C/circle%3E%3C/svg%3E");
	background-size: contain;
	animation: rotate 1s linear infinite;
}
.gifts_catalog .contains_items_product .gifts_item .group_gift .group_item_gift.active {
	border: 1px solid var(--red);
}
.gifts_catalog .contains_items_product .gifts_item .group_gift .group_item_gift .product-img {
	padding: 2px;
}
.gifts_catalog .contains_items_product .gifts_item .group_gift .group_view_all {

}

.gifts_catalog .contains_items_product .gifts_item .incart_block {
	position: absolute;
	bottom: 0;
	padding: 10px;
	opacity: 0;
	left: 10px;
	height: auto;
	width: calc(100% - 20px);
	transition: all .4s linear;
	visibility: hidden;
	/*background: rgba(var(--black_rgb), 0.9);*/
	background: var(--black);
	color: var(--white);
	padding: 10px 15px;
	border-radius: 5px;
	backface-visibility: hidden;
	z-index: 2;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block:before {
	content: "";
	background: var(--black);
	display: block;
	width: 10px;
	height: 10px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	bottom: -5px;
	transform: rotate(135deg);
	z-index: 0;
}


.gifts_catalog .contains_items_product .gifts_item.open_incart_block .incart_block {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart {
	position: relative;
	transition: .2s all linear;
	border: 0;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart:after {
	content: attr(data-error);
	opacity: 0;
	border-radius: 10px;
	font-size: 12px;
	font-weight: bold;
	/*background: rgba(var(--black_rgb), 0.9);*/
	background: var(--red);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	transition: .4s all linear;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart.error {
	-webkit-animation: 0.9s cycle ease-out;
	animation: 0.9s cycle ease-out;
	color: var(--red);
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart.load {
	color: var(--red);
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart.error:after {
	opacity: 1;
}

.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart:before {
	content: '';
	opacity: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	position: absolute;
	z-index: 1;
	transition: all .3s linear;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35'%3E%3Ccircle cx='50%25' cy='50%25' r='16' fill='none' stroke='%23ffffff' stroke-dasharray='90' stroke-width='3'%3E%3Cpath attributeName='transform' values='0 17.5 17.5;360 17.5 17.5'%3E%3C/path%3E%3C/circle%3E%3C/svg%3E");
	background-size: contain;
	animation: rotate 1s linear infinite;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart.load:before {
	opacity: 1;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .btn_gift_add_cart.load:after {
	content: '';
	opacity: 1;
}

.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block {
	display: flex;
	flex-direction: column;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
	font-size: 12px;
	align-items: center;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size:first-child {
	font-weight: bold;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size:first-child .size_count_input {
	text-align: center;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size .size_code {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size .size_code .price_higher{
	font-size: 7px;
	font-weight: bold;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size .size_count_input {
	width: 50%;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .item_size .size_count_input input {
	width: 100%;
	padding: 3px 5px;
	margin: 0;
	line-height: 1;
	text-align: center;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .size_block .btn_gift_add_cart {
	padding: 5px;
	position: relative;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .single_block {
	display: flex;
	flex-direction: column;
	font-size: 12px;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .single_block .single_gift_count_input {
	width: 100%;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .single_block .single_gift_count_input input {
	width: 100%;
	padding: 3px 5px;
	margin: 0;
	line-height: 1;
	text-align: center;
}
.gifts_catalog .contains_items_product .gifts_item .incart_block .single_block .btn_gift_add_cart {
	padding: 5px;
	width: 100%;
	margin-top: 5px;
	position: relative;
}

.gifts_catalog .contains_items_product .gifts_item .buy_block {
	margin-top: auto;
}
.gifts_catalog .contains_items_product .gifts_item .buy_block .btn_open_incart {
	margin-top: auto;
	width: 100%;
	align-items: center;
	display: flex;
	position: relative;
	padding: 10px;
	justify-content: center;
}
.gifts_catalog .contains_items_product .gifts_item .btn_open_incart:before {
	content: '';
	display: inline-block;
	height: 15px;
	width: 15px;
	background-image: url('../images/cart_white.svg');
	background-repeat: no-repeat;
	background-size: auto 95%;
	background-position: center;
	margin-right: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
} 
.gifts_catalog .contains_items_product .no_product {
	display: block;
	background: #fff;
	text-align: center;
	padding: 10px;
	border-radius: 10px;
	font-weight: 900;
}
.gifts_catalog .contains_items_product .no_product > span.name {
	font-weight: 900;
	margin-bottom: 10px;
	font-size: 20px;
}
.gifts_catalog .contains_items_product .no_product > span {
	display: block;
	font-weight: 400;
	font-size: 13px;
}

.gifts_catalog .btn_pagination_block.hidden{
	padding: 0;
	margin: 0;
	margin-top: -40px;
	opacity: 0;
}
.gifts_catalog .btn_pagination_block .btn_load_more {
	width: unset;
	max-width: 100%;
	position: relative;
	transform: scale(1);
	opacity: 1;
	overflow: hidden;
}
.gifts_catalog .btn_pagination_block.load .btn_load_more{
	background: var(--red);
	color: var(--red);
	cursor: default;
}
.gifts_catalog .btn_pagination_block .btn_load_more:before {
	content: '';
	opacity: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	position: absolute;
	z-index: 2;
	visibility: hidden;
	transition: all .3s linear, visibility .8s linear;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35'%3E%3Ccircle cx='50%25' cy='50%25' r='16' fill='none' stroke='%23ffffff' stroke-dasharray='90' stroke-width='3'%3E%3Cpath attributeName='transform' values='0 17.5 17.5;360 17.5 17.5'%3E%3C/path%3E%3C/circle%3E%3C/svg%3E");
	background-size: contain;
	animation: rotate 1s linear infinite;
}
.gifts_catalog .btn_pagination_block.load .btn_load_more:before {
	opacity: 1;
	visibility: visible;
}
.gifts_catalog .btn_pagination_block .btn_load_more.load:before {
	visibility: visible;
	opacity: 1;
	transition: all .3s linear, visibility 0s linear;
}
.gifts_catalog .btn_pagination_block .btn_load_more:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--red);
	transition: all .3s linear;
	opacity: 0;
}
.gifts_catalog .btn_pagination_block .btn_load_more.load:after {
	opacity: 1;
}
.gifts_catalog .btn_pagination_block .pagination {
	
}
.gifts_catalog .btn_pagination_block .pagination .icon {
	width: 40px;
	height: 8px;
}
.gifts_catalog .btn_pagination_block .pagination .page-numbers,.gifts_catalog .btn_pagination_block .pagination .more_page, .gifts_catalog .btn_pagination_block .pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 0;
	width: 48px;
	height: 48px;
	border-radius: 10px;
}
.gifts_catalog .btn_pagination_block .pagination .page-numbers{
	background-color: var(--white);
	color: var(--black);
	border: 1px solid var(--black);
	margin-right: 4px;
}
.gifts_catalog .btn_pagination_block .pagination .page-numbers:not(.dots):not(.current):not(.next):not(.prev):hover {
	background-color: var(--grey);
	color: var(--black);
}
.gifts_catalog .btn_pagination_block .pagination .page-numbers.current {
	border: 1px solid var(--red);
	background-color: var(--red)!important;
	color: var(--white);
}
.gifts_catalog .btn_pagination_block .pagination .dots {
	border: 0;
	align-items: end;
	background: transparent;
}
.gifts_catalog .btn_pagination_block .pagination .prev.page-numbers  {
	border: transparent;
	background: transparent;
	margin-right: 20px;
	transition: .4s all linear;
}
.gifts_catalog .btn_pagination_block .pagination .next.page-numbers {
	border: transparent;
	background: transparent;
	margin-left: 20px;
	transition: .4s all linear;
}
.gifts_catalog .btn_pagination_block .pagination .next.page-numbers:hover {
	transform: translateX(5px);
}
.gifts_catalog .btn_pagination_block .pagination .prev.page-numbers:hover {
	transform: translateX(-5px);
}

@media (min-width: 993px) {
	.gifts_catalog .btn_pagination_block .pagination {
		margin-left: auto;
	}
}
@media (max-width: 992px) {
	.gifts_catalog .btn_pagination_block {
		flex-wrap: wrap;
		margin-top: 25px;
		justify-content: center;
	}
	.gifts_catalog .btn_pagination_block .pagination .page-numbers, .gifts_catalog .btn_pagination_block .pagination .dots, .gifts_catalog .btn_pagination_block .pagination .page-numbers {
		width: 38px;
		height: 38px;
	}
	.gifts_catalog .btn_pagination_block .pagination .dots {
		width: 25px;
		margin-right: 4px;
	}
	.gifts_catalog .btn_pagination_block .pagination .prev.page-numbers {
		display: none;
		margin-right: 15px;
	}
	.gifts_catalog .btn_pagination_block .pagination .next.page-numbers {
		display: none;
		margin-left: 15px;
	}
	.gifts_catalog .btn_pagination_block .btn_load_more {
		margin-bottom: 20px;
		width: 100%;
	}

}

.gifts_catalog .name_block {

}
.gifts_catalog .dropdown .dropdown-toggle{
	padding: 10px 15px;
	font-size: 14px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 35px;
	cursor: pointer;
	background: var(--white);
	color: var(--black);
	border-radius: 10px;
	font-weight: bold;
	position: relative;
}

.gifts_catalog .dropdown .dropdown-toggle:after {
	content: '';
	border: none;
	position: absolute;
	width: 13px;
	height: 8px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.53434 7.10777L0.193681 1.75318C-0.0645605 1.49427 -0.0645605 1.0756 0.193681 0.819438L0.817308 0.194186C1.07555 -0.0647287 1.49038 -0.0647287 1.74863 0.194186L5.99863 4.43598L10.2514 0.194186C10.5096 -0.0619743 10.9245 -0.0619743 11.1827 0.194186L11.8063 0.819438C12.0646 1.07835 12.0646 1.49702 11.8063 1.75318L6.46566 7.10777C6.20742 7.36668 5.78984 7.36668 5.53434 7.10777Z' fill='%23DB3732'/%3E%3C/svg%3E%0A");
	transform: rotate(0deg);
	background-repeat: no-repeat;
	right: 15px;
	background-size: contain;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
	.gifts_catalog .dropdown .dropdown-toggle {
		padding: 8px 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.gifts_catalog .dropdown .dropdown-toggle:after {
		position: unset;
		width: 11px;
		height: 9px;
		margin-left: 5px;
		background-position: center;
	}
}
.gifts_catalog .product_loader {
	text-align: center;
	width: 102%;
	/*height: calc(100% - (80px * 2));*/
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1%;
	right: 0;
	z-index: -1;
	opacity: 0;
	padding: 80px 0;
	background-color: var(--grey2);
	transition: opacity .3s linear, z-index 4s;
}
.gifts_catalog .product_loader .icon {
	position: sticky;
	top: calc(50vh - 35px);
	padding: 3px;
	animation: rotate 1s  linear infinite;
}
.gifts_catalog .container_product.load .card_product_itm {
	opacity: 0;
}
.gifts_catalog .container_product.load .product_loader  {
	z-index: 3;
	opacity: 1;
	transition: opacity .3s linear, z-index 0s;
}



