.fabreex-cart {
	margin-bottom: 30px;
}

.fabreex-cart .container {
	max-width: 1280px;
}

.fabreex-cart h1 {
	margin: 30px 0;
}

.fabreex-cart-form {
	margin: 0;
}

.fabreex-cart .basket {
	display: grid;
	gap: 15px;
	grid-template-columns: 1fr 220px;
}

.fabreex-cart .basket-list,
.fabreex-cart .basket-group {
	display: flex;
	flex-direction: column;
}

.fabreex-cart .basket-list {
	gap: 20px;
}

.fabreex-cart .basket-group {
	gap: 10px;
	min-width: 0;
}

.fabreex-cart .basket-group-clear {
	align-items: center;
	align-self: flex-end;
	cursor: pointer;
	display: flex;
	gap: 5px;
}

.fabreex-cart-update {
	background: none;
	border: 0;
	color: var(--gray);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	line-height: 18px;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fabreex-cart-update:hover {
	color: var(--black);
}

.fabreex-cart .basket-card {
	background-color: #fff;
	border: 1px solid #e5e5e5;
	display: flex;
	padding: 10px;
	position: relative;
	transition: .5s;
	width: 100%;
}

.fabreex-cart .basket-card:hover {
	filter: drop-shadow(12px 31px 28px rgba(34, 34, 34, .26));
}

.fabreex-cart .basket-card__close {
	color: var(--black);
	cursor: pointer;
	line-height: 0;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}

.fabreex-cart .basket-card__close:hover {
	color: var(--gray);
}

.fabreex-cart .basket-card__group,
.fabreex-cart .basket-card__group1 {
	display: flex;
	gap: 15px;
}

.fabreex-cart .basket-card__group {
	padding-right: 28px;
	width: 100%;
}

.fabreex-cart .basket-card__image,
.fabreex-cart .basket-card__image img,
.fabreex-cart .basket-card img {
	display: block;
	height: 110px;
	width: 110px;
}

.fabreex-cart .basket-card__image img,
.fabreex-cart .basket-card img {
	object-fit: cover;
	object-position: center;
}

.fabreex-cart .basket-card__characteristic {
	display: flex;
	flex-direction: column;
	gap: 15px;
	min-width: 0;
}

.fabreex-cart .basket-card__characteristic-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #000;
	display: -webkit-box;
	font-size: 16px;
	font-weight: 500;
	overflow: hidden;
	position: relative;
	text-overflow: ellipsis;
	transition: .5s;
	width: 260px;
}

.fabreex-cart .basket-card__characteristic-title:hover {
	color: var(--gray);
}

.fabreex-cart .basket-card__characteristic-group,
.fabreex-cart .variation {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.fabreex-cart .variation {
	margin: 0;
}

.fabreex-cart .variation dt,
.fabreex-cart .variation dd,
.fabreex-cart .variation p {
	font-size: 14px;
	font-weight: 300;
	line-height: 17px;
	margin: 0;
}

.fabreex-cart .basket-card__characteristic-group-item,
.fabreex-cart .backorder_notification {
	font-size: 14px;
	font-weight: 300;
	line-height: 17px;
	margin: 0;
}

.fabreex-cart .basket-card__price {
	align-self: center;
	display: flex;
	gap: 15px;
	margin-left: auto;
}

.fabreex-cart .basket-card__price-wrapper {
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
}

.fabreex-cart .basket-card__price-wrapper > div:first-child {
	color: red;
	font-size: 14px;
	font-weight: 300;
	line-height: 17px;
}

.fabreex-cart .basket-card__price-cost,
.fabreex-cart .basket-card__price-sum {
	align-items: center;
	display: flex;
	font-size: 14px;
	font-weight: 300;
	line-height: 17px;
	white-space: nowrap;
}

.fabreex-cart .basket-card__price-cost span {
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
}

.fabreex-cart .basket-card__price-sum span {
	font-size: 20px;
	font-weight: 700;
}

.fabreex-cart .basket-card__price-count-group {
	align-items: center;
	display: flex;
}

.fabreex-cart .basket-card__price-count {
	align-items: center;
	background: #fff;
	border: 1px solid var(--gray);
	display: flex;
	font-size: 16px;
	gap: 5px;
	justify-content: space-between;
	line-height: 16px;
	padding: 10px;
	position: relative;
	width: 110px;
	z-index: 1;
}

.fabreex-cart .quantity {
	margin: 0;
	width: 100%;
}

.fabreex-cart .basket-card__price-count-input {
	align-items: center;
	display: flex;
	gap: 6px;
	justify-content: space-between;
	width: 100%;
}

.fabreex-cart .basket-card__price-count-input-btn {
	align-items: center;
	color: var(--black);
	cursor: pointer;
	display: flex;
	flex: 0 0 auto;
	line-height: 0;
	transition: color .2s ease;
	user-select: none;
}

.fabreex-cart .basket-card__price-count-input-btn:hover,
.fabreex-cart .basket-card__price-count-input-btn:focus-visible {
	color: var(--gray);
	outline: none;
}

.fabreex-cart .quantity input.qty,
.fabreex-cart .basket-card__price-count-input input.qty {
	appearance: textfield;
	background: transparent;
	border: 0;
	color: var(--black);
	font: inherit;
	line-height: 18px;
	margin: 0;
	outline: none;
	padding: 0;
	text-align: center;
	width: 100%;
}

.fabreex-cart .quantity input.qty.basket-card__price-count-input-number,
.fabreex-cart .basket-card__price-count-input input.qty.basket-card__price-count-input-number {
	flex: 1 1 auto;
	min-width: 28px;
	width: 36px;
}

.fabreex-cart .quantity input.qty::-webkit-inner-spin-button,
.fabreex-cart .quantity input.qty::-webkit-outer-spin-button,
.fabreex-cart .basket-card__price-count-input input.qty::-webkit-inner-spin-button,
.fabreex-cart .basket-card__price-count-input input.qty::-webkit-outer-spin-button {
	appearance: none;
	margin: 0;
}

.fabreex-cart .basket-design {
	background-color: #fff;
	border: 1px solid var(--gray);
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 28px;
	padding: 15px;
}

.fabreex-cart .basket-design-title {
	font-size: 20px;
	font-weight: 400;
	line-height: 23px;
}

.fabreex-cart .basket-design-title span,
.fabreex-cart .basket-design-title strong,
.fabreex-cart .basket-design-title .amount {
	font-size: 22px;
	font-weight: 700;
}

.fabreex-cart .basket-design-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
}

.fabreex-cart .basket-design .btn {
	width: 100%;
}

.fabreex-cart-coupon {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fabreex-cart-coupon .input-text {
	background: var(--gray-bg);
	border: 0;
	color: var(--gray);
	font-size: 14px;
	height: 38px;
	outline: none;
	padding: 0 12px;
	width: 100%;
}

.fabreex-cart .woocommerce-notices-wrapper {
	margin-bottom: 20px;
}

.fabreex-cart .woocommerce-message,
.fabreex-cart .woocommerce-error,
.fabreex-cart .woocommerce-info {
	margin: 0 0 20px;
}

@media screen and (max-width: 1191px) {
	.fabreex-cart .basket-card__group {
		display: flex;
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	.fabreex-cart .basket-card__price {
		align-self: flex-start;
		justify-content: space-between;
		margin-left: 110px;
		width: calc(100% - 110px);
	}

	.fabreex-cart .basket-card__image,
	.fabreex-cart .basket-card__image img,
	.fabreex-cart .basket-card img {
		height: 95px;
		width: 95px;
	}

	.fabreex-cart .basket-card__price-wrapper > div:first-child {
		text-align: end;
	}
}

@media screen and (max-width: 975px) {
	.fabreex-cart .basket {
		grid-template-columns: 1fr;
	}

	.fabreex-cart .basket-card__price-sum span {
		font-size: 16px;
		font-weight: 700;
	}
}

@media screen and (max-width: 637px) {
	.fabreex-cart .container {
		padding: 0;
	}

	.fabreex-cart h1 {
		padding: 0 15px;
	}

	.fabreex-cart .basket-card {
		background-color: #e5e5e5;
		border: 1px solid #e5e5e5;
	}

	.fabreex-cart .basket-card__characteristic-title {
		width: unset;
	}

	.fabreex-cart .basket-card__price {
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin-bottom: 15px;
		margin-left: 0;
		width: 100%;
	}

	.fabreex-cart .basket-card__price-count-group {
		display: flex;
		justify-content: flex-end;
	}

	.fabreex-cart .basket-card__close {
		position: absolute;
		right: 45px;
		top: 85%;
	}

	.fabreex-cart .basket-design-title {
		display: flex;
		justify-content: space-between;
	}

	.fabreex-cart .basket-design {
		margin: 0 auto;
		max-width: 90vw;
	}
}
