.bx-basket {
	position: relative;
}

.bx-basket:hover .bx-basket-item-list {
	display: block;
}

.bx-basket-item-list {
	width: 270px;
	display: none;
	position: absolute;
	right: -50%;
    margin-top: -3px;
	overflow: hidden;
	border: 1px solid #f7f7f7;
	background: #fff;
	box-shadow: 0px 2px 16px -8px #000;
    z-index: 10;
}
.bx-basket-item-list-item-status {
	margin-bottom: 10px;
	padding: 5px;
	background: #ebebeb;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	line-height: 16px;
}
.bx-basket-item-list-button-container {
	padding: 10px 0;
	text-align: center;
}
.bx-basket-item-list-container {
	overflow-y: auto;
	height: 100%;
    max-height: 400px;
}

.bx-basket-item-list-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding: 15px 10px;
	border-bottom: 1px solid #ebebeb;
}

.bx-basket-item-list-item-img {
	width: 30%;
	text-align: center;
}

.bx-basket-item-list-item-img img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.bx-basket-item-list-item-name {
	width: 70%;
}

.bx-basket-item-list-item-name a {
	display: block;
	font-size: 13px;
	line-height: 16px;
	margin-bottom: 8px;
}

.bx-basket-item-list-item-remove {
	position: absolute;
	top: 10px;
	right: 5px;
	width: 20px;
	height: 20px;
	opacity: .5;
	cursor: pointer;
	transition: 250ms linear all;
}

.bx-basket-item-list-item-remove:after,
.bx-basket-item-list-item-remove:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 10px;
	height: 2px;
	border-radius: 1px;
	background-color: #333;
	content: '';
	transform: translate(-50%, -50%);
}

.bx-basket-item-list-item-remove:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-o-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.bx-basket-item-list-item-remove:before {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	-moz-transform: translate(-50%, -50%) rotate(135deg);
	-ms-transform: translate(-50%, -50%) rotate(135deg);
	-o-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}

.bx-basket-item-list-item-remove:hover {
	opacity: .7;
}

.bx-basket-item-list-item-price-block {
	width: 100%;
	padding-top: 10px;
	font-size: 12px;
}

.bx-basket-item-list-item-price {
	display: inline-block;
	margin-right: 5px;
}

.bx-basket-item-list-item-price-old {
	display: inline-block;
	margin-right: 5px;
	color: #b0b0b0;
	text-decoration: line-through
}

.bx-basket-item-list-item-price-summ {
	padding-top: 5px;
}