.cart-upsell {
			padding: 8px;
			font-size: 14px;
			grid-column: 1;
			grid-row: 1;
		}

		.cart-upsell__empty {
			padding: 8px;
			border-radius: 2px;
			display: flex;
			gap: 8px;
			align-items: center;
			font-weight: bold
		}

		.cart-upsell__progress-wrapper {
			margin-top: 12px;
			margin-bottom: 12px;
		}

		.cart-upsell__progress {
			align-items: center;
			display: flex;
			margin-bottom: 4px;
			justify-content: space-between;
		}

		.cart-upsell__progress-bar {
			border-radius: 8px;
			width: 100%;
			height: 8px;
			margin-right: 8px;
			position: relative;
		}

		.cart-upsell__percent {
			width: 100%;
			border-radius: 8px;
			max-width: 100%;
			height: 100%;
			left: 0;
			position: absolute;
			transition: width .3s ease;
		}

		.cart-upsell__progress span {
			font-weight: 700;
			line-height: 1;
		}

		.cart-upsell__promotion-wrapper {
			margin-bottom: 8px;
		}

		.cart-upsell__promotion {
			padding: 8px;
			gap: 8px;
			align-items: center;
			display: flex;
			margin-bottom: 8px;
			border-radius: 2px;
		}

		.cart-upsell__promotion button {
			line-height: 1.2;
			padding: 4px 12px;
			min-height: initial;
			margin: 0 0 0 auto;
			box-sizing: border-box;
			text-align: center;
			margin-top: auto;
			cursor: pointer;
			border: 1px solid;
			transition: all 0.3s ease-in-out;
		}

		.cart-upsell__content.incomplete {
			color: var(--incomplete-color);
		}

		.cart-upsell__content.incomplete .cart-upsell__price {
			color: var(--incomplete-price);
		}

		.cart-upsell__content.complete {
			color: var(--complete-color);
		}

		.cart-upsell__empty-wrapper, .cart-upsell__progress-wrapper, .cart-upsell__promotion-wrapper, .cart-upsell__content {
			display: none;
		}

		@media (min-width: 992px) {
			.cart_page_mobile {
				grid-row: 2;
			}

			.header-cart-price {
				grid-row: 1/4;
			}
		}