

/* Start:/local/templates/bs_theme_2023/components/bitrix/breadcrumb/breadcrumb_order/style.css?1697615765606*/
.breadcrumbs {
        display: flex;
		flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin: 20px 0;
    }

    .breadcrumbs__link a {
        position: relative;
        margin-right: 40px;
        display: block;
    }

    .breadcrumbs__link a:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: -30px;
        width: 20px;
        height: 1px;
        background: var(--secondary-color);
    }

    .breadcrumbs__link--current {
        color: var(--secondary-color);
    }
/* End */


/* Start:/local/templates/bs_theme_2023/components/bitrix/sale.basket.basket/main_cart/style.css?16976157654383*/
.cart .section-main-title {
	text-align: center;
}

.cart-wrapper {
	display: flex;
	align-items: flex-start;
	margin: 40px 0 80px 0;
	justify-content: space-between;
}

.cart-list {
	width: 70%;
}

.cart-item {
	display: flex;
	padding: 20px;
	border: 1px solid var(--border);
	margin-bottom: 20px;
}

.cart-item__img {
	width: 80px;
	height: 80px;
}

.cart-item__img img {
	height: 100%;
	margin: 0 auto;
	display: block;
}

.cart-item__main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
}

.cart-item__info {
	width: 300px;
}

.cart-item__sku {
	font-size: 14px;
	color: #696969;
}

.cart-item__name {
	font-family: 'Literata', serif;
	font-weight: 500;
	margin: 10px 0;
}

.cart-item__name {
	font-family: 'Literata', serif;
	font-weight: 500;
	margin: 10px 0;
	display: block;
}

.cart-item__prop {
	color: var(--secondary-color);
}

.cart-item__prop span {
	color: var(--black);
}

.cart-item__price-box {
	display: flex;
	align-items: center;
}

.cart-item__price,
.cart-item__full-price {
	font-weight: bold;
}

.cart-item__quantity {
	position: relative;
	margin: 0 60px;
}

.cart-item__btn {
	position: absolute;
	top: 0;
	border: none;
	height: 40px;
	width: 40px;
	background: transparent;
	cursor: pointer;
	fill: var(--black);
}

.cart-item__btn.cart-item__minus {
	left: 0;
}

.cart-item__btn.cart-item__plus {
	right: 0;
}

.cart-item__btn svg {
	width: 24px;
	height: 24px;
}

.cart-item__quantity span {
	display: none;
}

.cart-item__qty-value {
	padding: 10px;
	font-size: 16px;
	text-align: center;
	border-radius: 0;
	border: 1px solid var(--border);
	width: 120px;
}

.cart-item__btns {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-left: 60px;
}

.cart-item__like svg {
	width: 24px;
	height: 24px;
}

.cart-item__delete-btn {
    cursor: pointer;
}

.cart-order {
	width: 28%;
	padding: 20px;
	background: var(--third-color);
}

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

.cart-order__line--gray {
	color: #696969;
}

.cart-order__line--bold {
	font-weight: bold;
	border-top: 1px solid var(--border);
	padding-top: 20px;
}

.cart-order-coupon {
	display: flex;
	align-items: center;
}

.cart-order-coupon__input {
	background: #ffffff;
	border: 1px solid #ebe7db;
	width: 100%;
	padding: 8px 12px;
	color: #4e4b49;
	margin-left: 12px;
}

.cart-order-coupon__submit {
	position: absolute;
	right: 0;
	opacity: 0;
}

.cart-order__basket {
	width: 100%;
	margin: 20px 0;
}

.cart-order__note {
	font-size: 12px;
	color: #696969;
}

.cart-order__red {
	color: var(--primary-color);
}
.empty-cart {
        background: linear-gradient(rgb(255 255 255 / 35%), rgb(255 255 255 / 35%)), 
        url(/upload/resize_cache/webp/local/templates/bs_theme/assets/images/image-for-main-page-2.webp) no-repeat;
        background-size: contain;
        background-position: center;
        max-width: 740px;
        margin: 40px auto;
        height: 70vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .empty-cart__text {
        margin-bottom: 40px;
        color: var(--secondary-color);
    }

.basket-items-list-item-removed-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: var(--third-color);
    margin-bottom: 20px;
    color: var(--fourth-color);
}

.basket-items-list-item-removed-block a {
    color: var(--primary-color);
    font-style: italic;
    text-decoration: underline;
}

@media (max-width: 1024px) {
	.cart-item__main {
		flex-direction: column;
		align-items: flex-start;
	}

	.cart-list {
		width: 65%;
	}

	.cart-order {
		width: 32%;
	}
}

@media (max-width: 768px) {
	.cart-wrapper {
		flex-direction: column;
	}

	.cart-list {
		width: 100%;
	}

	.cart-order {
		width: 100%;
	}

	.cart-item__quantity {
		margin: 10px 0;
	}

	.cart-item__btns {
		margin-left: 20px;
	}
}

@media (max-width: 576px) {
	.cart-order {
		margin-top: 20px;
	}
	.cart-item__price-box {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 20px;
	}

	.cart-item__info {
		width: auto;
	}

	.cart-item {
		padding: 20px 0;
		border: none;
		border-top: 1px solid var(--border);
		margin-bottom: 0;
	}
	.cart-item:last-child {
		border-bottom: 1px solid var(--border);
	}
}

/* End */
/* /local/templates/bs_theme_2023/components/bitrix/breadcrumb/breadcrumb_order/style.css?1697615765606 */
/* /local/templates/bs_theme_2023/components/bitrix/sale.basket.basket/main_cart/style.css?16976157654383 */
