.wishflow-button {
	align-items: center;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 4px;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	gap: 8px;
	line-height: 1;
	padding: 9px 12px;
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease;
}

.wishflow-button:disabled,
.wishflow-remove-button:disabled {
	cursor: progress;
	opacity: .65;
}

.wishflow-button .wishflow-icon {
	align-items: center;
	color: var(--wishflow-icon-color, currentColor);
	display: inline-flex;
	height: var(--wishflow-icon-size, 18px);
	width: var(--wishflow-icon-size, 18px);
}

.wishflow-button .wishflow-icon svg {
	height: 100%;
	width: 100%;
}

.wishflow-button .wishflow-icon-added {
	display: none;
}

.wishflow-button.is-added .wishflow-icon-normal {
	display: none;
}

.wishflow-button.is-added .wishflow-icon-added {
	color: var(--wishflow-added-icon-color, #e0245e);
	display: inline-flex;
}

.wishflow-page {
	color: #1f2933;
	margin: 0 auto;
	max-width: 1240px;
	width: 100%;
}

.wishflow-panel {
	background: #fff;
	padding: 52px 56px 64px;
}

.wishflow-page-title {
	border-bottom: 1px solid #e9ecef;
	color: #171a1d;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.25;
	margin: 0;
	padding: 0 0 34px;
}

.wishflow-table-head,
.wishflow-item {
	display: grid;
	grid-template-columns: 48px minmax(300px, 1fr) 220px 180px;
}

.wishflow-table-head {
	align-items: center;
	border-bottom: 1px solid #e9ecef;
	color: #30363b;
	font-size: 15px;
	font-weight: 500;
	min-height: 86px;
}

.wishflow-table-head>span {
	padding: 0 20px;
}

.wishflow-item {
	align-items: center;
	border-bottom: 1px solid #e9ecef;
	min-height: 176px;
}

.wishflow-remove-cell {
	align-items: center;
	display: flex;
	justify-content: flex-start;
}

.wishflow-remove-button {
	align-items: center;
	background: transparent !important;
	border: 0 !important;
	border-radius: 50%;
	box-shadow: none !important;
	color: #1f2933 !important;
	cursor: pointer;
	display: inline-flex;
	font-size: 25px;
	font-weight: 300;
	height: 36px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0 !important;
	transition: color .2s ease, background-color .2s ease;
	width: 36px;
}

.wishflow-remove-button:hover,
.wishflow-remove-button:focus-visible {
	background: #f2f4f5 !important;
	color: #e54d42 !important;
}

.wishflow-product-cell {
	align-items: center;
	display: flex;
	gap: 30px;
	min-width: 0;
	padding: 24px 20px;
}

.wishflow-item-image {
	flex: 0 0 112px;
}

.wishflow-item-image img {
	aspect-ratio: 1;
	border-radius: 0;
	display: block;
	height: 112px;
	object-fit: cover;
	width: 112px;
}

.wishflow-item-content {
	min-width: 0;
}

.wishflow-item-title {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.45;
	margin: 0 0 8px;
}

.wishflow-item-title a {
	color: #20252a;
	text-decoration: none;
	transition: color .2s ease;
}

.wishflow-item-title a:hover {
	color: var(--primary-color1, #0067ee);
}

.wishflow-item-meta {
	color: #7a8288;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 6px 12px;
}

.wishflow-product-price {
	color: #555d63;
	font-size: 16px;
	line-height: 1.55;
	padding: 24px 20px;
}

.wishflow-product-price .price-area,
.wishflow-product-price .price-area h6,
.wishflow-product-price .price-area span,
.wishflow-product-price .price-area strong {
	color: inherit;
	font: inherit;
	margin: 0;
}

.wishflow-product-price .price-area h6,
.wishflow-product-price .price-area>span:first-child {
	display: block;
	font-size: 12px;
	line-height: 1.4;
}

.wishflow-product-price del {
	color: #9aa0a5;
	margin-right: 5px;
}

.wishflow-item-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	padding: 24px 20px;
}

.wishflow-item-actions .button {
	align-items: center;
	background: #25292d;
	border: 1px solid #25292d;
	border-radius: 2px;
	box-shadow: none;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	justify-content: center;
	letter-spacing: .06em;
	line-height: 1;
	min-height: 44px;
	min-width: 135px;
	padding: 12px 22px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.wishflow-item-actions .button:hover {
	background: var(--primary-color1, #0067ee);
	border-color: var(--primary-color1, #0067ee);
	color: #fff;
}

.wishflow-empty {
	border: 0;
	border-bottom: 1px solid #e9ecef;
	color: #697178;
	margin: 0;
	padding: 42px 0;
}

.wishflow-toast {
	background: #111827;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	max-width: min(320px, calc(100vw - 32px));
	opacity: 0;
	padding: 12px 14px;
	position: fixed;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease;
	z-index: 99999;
}

.wishflow-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.wishflow-toast-bottom-right {
	bottom: 24px;
	right: 24px;
}

.wishflow-toast-bottom-left {
	bottom: 24px;
	left: 24px;
}

.wishflow-toast-top-right {
	right: 24px;
	top: 24px;
}

.wishflow-toast-top-left {
	left: 24px;
	top: 24px;
}

@media (max-width: 991px) {
	.wishflow-panel {
		padding: 40px 32px 50px;
	}

	.wishflow-table-head,
	.wishflow-item {
		grid-template-columns: 44px minmax(260px, 1fr) 170px 150px;
	}

	.wishflow-product-cell {
		gap: 20px;
	}

	.wishflow-item-image,
	.wishflow-item-image img {
		height: 90px;
		width: 90px;
	}

	.wishflow-item-image {
		flex-basis: 90px;
	}
}

@media (max-width: 767px) {
	.wishflow-panel {
		padding: 30px 20px 40px;
	}

	.wishflow-page-title {
		font-size: 25px;
		padding-bottom: 24px;
	}

	.wishflow-table-head {
		display: none;
	}

	.wishflow-item {
		align-items: start;
		grid-template-columns: 34px minmax(0, 1fr);
		padding: 24px 0;
	}

	.wishflow-remove-cell {
		grid-column: 1;
		grid-row: 1;
	}

	.wishflow-remove-button {
		height: 30px;
		width: 30px;
	}

	.wishflow-product-cell,
	.wishflow-product-price,
	.wishflow-item-actions {
		grid-column: 2;
		padding: 0;
	}

	.wishflow-product-cell {
		align-items: flex-start;
		grid-row: 1;
	}

	.wishflow-product-price,
	.wishflow-item-actions {
		margin-top: 20px;
	}

	.wishflow-product-price::before,
	.wishflow-item-actions::before {
		color: #30363b;
		content: attr(data-label);
		display: block;
		flex: 0 0 100%;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .05em;
		margin-bottom: 8px;
		text-transform: uppercase;
	}

	.wishflow-product-price {
		grid-row: 2;
	}

	.wishflow-item-actions {
		grid-row: 3;
		justify-content: flex-start;
	}

	.wishflow-item-image {
		flex-basis: 76px;
	}

	.wishflow-item-image img {
		height: 76px;
		width: 76px;
	}
}