#whishlist{
    width: 100%;
	--color-dark-blue: #27479A;
	--color-main-black: #191919;
	--background-color-main-blue: linear-gradient(86.73deg, #27479A 4.13%, #0669B1 120.17%);
}
#whishlist table,
#whishlist tbody{
	width: inherit;
	max-width: inherit;
}
#whishlist table tr{
	border-top: 1px solid #E3E3E3;
	width: inherit;
	max-width: inherit;
}
#whishlist table tr td{
	padding-top: 5px;
	padding-bottom: 10px;
	padding-right: 20px;
}
#whishlist table tr td:last-child{
	padding-right: 0;
}
#whishlist table tr td.action{
	position: relative;
	width: 34px;
}
#whishlist table tr td.action .action-container{
	width: inherit;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#whishlist table .image{
	width: 80px;
	height: 80px;
}
#whishlist table .img-container{
	width: inherit;
	height: inherit;
	position: relative;
}
#whishlist table .img-container img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	top: auto;
	left: auto;
	transform: unset;
}
#whishlist td.description{
	display: flex;
	column-gap: 20px;
}
#whishlist .description-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
    
	height: auto;
    max-height: unset;
    min-height: unset;
    padding: 12px 0 6px 0;
	max-width: inherit;
	width: auto;
}
#whishlist .description-container .title-container{
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 0em;
	text-align: left;
	color: var(--color-main-black);
	height: max-content;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#whishlist .description-container .title-container .title{
	font-size: 16px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
	color: var(--color-main-black);
}
#whishlist .description-container .article{
	font-size: 12px;
	font-weight: 400;
	line-height: 14.4px;
	text-align: left;
}
#whishlist .basket-add{
	width: 120px;
	box-sizing: content-box;
	position: relative;
}
#whishlist .basket-add .basket-item-block-amount{
	display: none;
}
#whishlist .basket-add.show-counter .basket-item-block-amount{
	display: flex;
	align-items: center;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#whishlist .basket-add.show-counter .basket-item-addBasket-block{
	display: none;
	box-sizing: content-box;
	width: inherit;
}
#whishlist .basket-add .basket-item-addBasket-block{
	width: inherit;
}
#whishlist .basket-add .basket-item-addBasket{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: inherit;
	display: block;
	box-sizing: border-box;
	text-align: center;
	background: var(--background-color-main-blue);
	border-radius: 4px;
	color: #fff !important;
	padding: 5px 0 5px 22px;
	text-decoration: none;
}
#whishlist .basket-add .basket-item-addBasket::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url('./images/basketbtn.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#whishlist .basket-add .basket-item-amount-btn{
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background-color: #f1f1f1;
	position: relative;
	column-gap: 2px;
	cursor: pointer;
}
#whishlist .basket-add .basket-item-amount-btn::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
}

.main.blue #whishlist .basket-add .basket-item-amount-btn.minus::after{
	background-image: url('./images/minus.svg');
}
.main.blue #whishlist .basket-add .basket-item-amount-btn.plus::after{
	background-image: url('./images/plus.svg');
}
#whishlist .basket-add .basket-item-amount-btn.minus::after{
	background-image: url('./images/minus-green.svg');
}
#whishlist .basket-add .basket-item-amount-btn.plus::after{
	background-image: url('./images/plus-green.svg');
}

#whishlist .basket-add  .basket-item-amount-filed{
	background-color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
	padding: 2px;
	border: none;
	border-radius: 4px;
	height: 40px;
	width: 40px;
	outline: none;
	text-align: center;
}
#whishlist td.price{
	position: relative;
	width: 130px;
}
#whishlist td.price .price-container{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#whishlist td.price .price-container .price{
	font-size: 16px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
	color: var(--color-main-black);
}
#whishlist td.price .price-container .sale-block{
	display: flex;
	flex-direction: column;
	align-items: center;
}
#whishlist td.price .price-container .sale-block .top{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	column-gap: 6px;
}
#whishlist td.price .price-container .sale-block .top .DiscountPrice{
	font-size: 16px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
	color: #CC2F25;
	text-wrap: nowrap;
	white-space: nowrap;
}
#whishlist td.price .price-container .sale-block .top .OldPrice{
	font-size: 16px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
	color: #878787;
	text-decoration: line-through;
	text-wrap: nowrap;
	white-space: nowrap;
}
#whishlist td.price .price-container .sale-block .bottom{
	width: 100%;
	font-size: 12px;
	font-weight: 600;
	line-height: 14.4px;
	text-align: center;
	background-color: #CC2F25;
	color: #fff;
	white-space: nowrap;
}
#whishlist .not-available{
	color: var(--color-status-error);
}
@media(max-width: 768px){
	#whishlist{
		width: 100%;
		max-width: none;
		margin-top: 16px;
	}
	#whishlist tbody tr{
		display: grid;
		grid-template-columns: 120px auto 24px;
		grid-template-rows: auto auto;
		grid-template-areas: 
		"description description description"
		"basket-add price action";
		row-gap: 20px;
		column-gap: 20px;
		padding: 10px 0;
	}
	#whishlist td.description{
		grid-area: description;
	}
	#whishlist td.basket-add{
		grid-area: basket-add;
	}
	#whishlist table tr td{
		padding: 0 !important;
	}
	#whishlist .basket-add .basket-item-addBasket,
	#whishlist .basket-add .basket-item-addBasket-block{
		height: 100%;
	}
	#whishlist .basket-add .basket-item-addBasket{
		position: relative;
	}
	#whishlist td.price{
		grid-area: price;
		display: flex;
		align-items: center;
		padding: 0;
		width: auto;
	}
	#whishlist td.action{
		grid-area: action;
	}
	#whishlist .description-container{
		width: auto;
	}
	#whishlist .description-container .title-container{
		-webkit-line-clamp: 2;
        padding-right: 0;
	}
	#whishlist td.action{
		display: flex;
		align-items: center;
	}
	#whishlist td.price .price-container .sale-block .top .DiscountPrice,
	#whishlist td.price .price-container .sale-block .top .OldPrice{
		font-size: 14px;
	}
}