.popup-basket .wrap-large{
	padding: 0;
}
.popup-basket .popup-title{
	margin-bottom: 0;
	padding: 8px 0;
	color: #FFFFFF;
	background: var(--main-color-green);
}
.basket-list{
	width: 100%;
	max-height: 300px;
	padding: 0 10px;
	overflow-y: auto;
	background: #FFFFFF;
}
.basket-item{
	position: relative;
	padding: 10px 0;
}
.basket-item:not(:first-child){
	border-top: 1px solid var(--main-color-light-grey);
}
.basket-item__delete-btn{
	position: absolute;
	top: 20px;
	left: 5px;
	display: flex;
	width: 12px;
	height: 12px;
	color: var(--main-color-light-black);
	z-index: 5;
}
.basket-item__delete-btn::after{
	font-family: 'fontello';
	font-size: .8em;
	content: '\e806';
}
.basket-item__delete-btn ~ .basket-item__container{
	padding-left: 20px;
}
.basket-item__container{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.basket-item__container + .basket-item__container{
	margin-top: 15px;
}
.basket-item__image,
.basket-item__info{
	flex: 1;
}
.basket-item__image{
	max-width: 200px;
	text-align: center;
}
.basket-item__title{
	margin-bottom: 10px;
	font-weight: var(--main-bold-font);
	font-size: 1.1em;
	color: var(--main-color-light-black);
	text-decoration: underline;
}
a.basket-item__title:hover{
	text-decoration: none;
}
.basket-item__details{
	display: flex;
	align-items: center;
	gap: 10px;
}
.basket-item__quantity{
	margin: 0 0 0 auto;
}
.basket-item__sum{
	min-width: 90px;
	margin: 0 15px 0 13%;
	font-weight: var(--main-bold-font);
	font-size: 1.1em;
	color: var(--main-color-blue);
	text-align: right;
}
.basket-item__container .additional-services__price{
	margin-right: 8px;
}
.basket-item__container .additional-services{
	width: 100%;
	padding-left: 200px;
}
.popup-basket__bottom::after{
	content: '';
	clear: both;
}
.popup-basket__slider,
.popup-basket__complete{
	height: 225px;
}
.popup-basket__slider{
	width: calc(100% - 270px);
	float: left;
}
.popup-basket__slider .headline{
	border: none;
	background-color: var(--main-color-light-grey);
}
.popup-basket__slider .headline .caption{
	width: 100%;
	font-size: 1.15em;
	margin: 0;
	padding-top: 10px;
	border: none;
}
.popup-basket__slider .slick-slider{
	margin: 0 10px;
}
.popup-basket__slider .cover{
	height: 180px;
	font-size: 12px;
}
.popup-basket__slider .cover .img-holder{
	height: 55px;
}
.popup-basket__slider .sticker,
.popup-basket__slider .old-price{
	display: none;
}
.popup-basket__slider .slider .slick-prev,
.popup-basket__slider .slider .slick-next{
	position: absolute;
	left: -2px;
}
.popup-basket__slider .slider .slick-next{
	left: auto;
	right: -2px;
}
.popup-basket__complete{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: var(--main-color-light-black);
}
.popup-basket__slider + .popup-basket__complete{
	width: 270px;
}
.popup-basket__final-sum{
	font-weight: var(--main-bold-font);
	font-size: 1.1em;
	color: #FFFFFF;
}
.btn-back-to-shopping{
	color: var(--main-color-light-grey);
	text-decoration: underline;
}
.btn-back-to-shopping:hover{
	text-decoration: none;
}
.popup-basket__complete .btn-submit{
	--second-color: var(--main-color-green);
	--border-color: var(--main-color-green);
}
@media (min-width: 1300px) and (min-height: 900px){
	.popup-basket__top .basket-list{
		max-height: 485px;
	}
}
@media (max-height: 440px){
	.popup-basket__top .basket-list{
		max-height: 140px;
	}
}
@media (max-width: 860px){
	.popup-basket__slider{
		display: none;
	}
	.popup-basket__complete{
		height: 170px;
	}
	.popup-basket__slider + .popup-basket__complete{
		width: 100%;
	}
}
@media (max-width: 640px){
	.basket-item__image{
		max-width: 115px;
	}
	.basket-item__details{
		flex-wrap: wrap;
		gap: 10px 20px;
	}
	.complectation{
		max-width: 370px;
		width: 100%;
	}
	.basket-item__quantity,
	.basket-item__sum{
		margin: 0;
	}
	.basket-item__container .additional-services{
		padding-left: 0;
	}
}
@media (max-width: 490px){
	.basket-item__title{
		font-size: .95em;
	}
}