.bx-basket-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
	position: relative;
}
.bx-basket-block:hover {
	opacity: 0.7;
}
.basket-header__count {
	position: absolute;
	top: 0;
	right: 2px;
	width: 18px;
	height: 18px;
	border-radius: 100px;
	background-color: var(--blue);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--inter);
	font-size: 10px;
	font-weight: 400;
	line-height: 12px;
}
.bx-basket-block span {
	color: var(--dark);
	font-family: var(--inter);
	font-size: var(--s14);
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}



@media (max-width: 768px) {
	.bx-basket-fixed {
		position: unset;
	}
	.bx-basket-block {
		gap: 12px;
	}
	.bx-basket-block span {
		font-size: 12px;
		line-height: 15px;
	}
}
