/* Cart. */

.cart {
	position: absolute;
	right: 0;

	width: calc(100% - var(--bone_size) * 2);
	max-width: 825px;
	margin: 0 var(--bone_size);
	padding: 48px;
	background: var(--bg);
	border: 1px solid #0093CD;
	border-radius: 10px;
	z-index: 99;

	transition: opacity .43s;
}

@media only screen and (min-width: 901px) {

	.cart {
/*		zoom: .7;*/

		transform: translate3d(0, 0, 0px) scale(.7);
		transform-origin: top right;
	}

}

.cart:not(.active) {
	pointer-events: none;
	opacity: 0;
}

.cart_net {
	grid-gap: 36px;
}

.cart_icon img {
	--size: 210px;

	width: var(--size);
	height: var(--size);
	object-fit: contain;
	object-position: center;
}

.cart_txt {

}

.cart_title {
	margin-bottom: 18px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
}

.cart_text {
	line-height: 1.6;
	margin-bottom: 32px;
}

.cart_btn {
	--color: #fff;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-gap: 4px;

	height: 60px;
	padding: 30px;
	color: var(--color);
	font-size: 17px;
	font-weight: 500;
	border-radius: 40px;
	background-color: var(--primary);
	cursor: pointer;

	transition: box-shadow .43s;
}

.cart_btn:hover {
	box-shadow: 0 0 32px var(--primary);
}


.cart_products {
	display: grid;
	grid-gap: 40px;
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #eee;
}

.cart_product {
	grid-gap: 16px;
}

.cart_product_info {
	grid-gap: 24px;
}

.cart_product_img img {
	--size: 64px;

	width: var(--size);
	height: var(--size);
	object-fit: contain;
	object-position: center;
	border: 1px solid #eee;
	border-radius: 10px;
}

.cart_product_txt {
	max-width: 244px;
}

.cart_product_price {
	grid-gap: 0 20px;

	margin-bottom: 12px;
	color: #0C1A20;
	font-weight: 700;
	white-space: nowrap;
}

.cart_product_price ._sale {
		justify-self: start;

	  padding: 0 4px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    background-color: #ED6D30;
    border-radius: 6px;
}

.cart_product_price ._old {
	color: var(--gray);
    font-size: 17px;
    font-weight: 400;
    text-decoration: line-through;
}

.cart_product_name {
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

	font-size: 15px;
	line-height: 1.5;
}

.cart_product_total {
	font-size: 24px;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.cart_product_del {
	--size: 19px;

	width: var(--size);
	min-width: var(--size);
	cursor: pointer;
}

.cart_total {
	grid-gap: 24px;
}

.cart_total_price {
	grid-gap: 16px;

	font-size: 26px;
	font-weight: 700;
}

.cart_total_price span {
	color: var(--primary);
}

.cart_product._complect {
	position: relative;
}

.cart_product._complect:before {
	pointer-events: none;
	content: '';
	position: absolute;
	top: -16px;
	left: -30px;
	right: -30px;
	bottom: -24px;

	border: 1px solid #ED6D30;
	border-radius: 8px;
}

.cart_product._complect .cart_product_info:not(:first-child) {
	margin-top: 40px;
}

.cart_product._complect .cart_product_price {
	justify-content: flex-end;
	flex-grow: 1;
}

.cart_product_bottom {
	grid-gap: 16px;
	grid-row-gap: 4px !important;

	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #eee;
}

.cart_product_caption {
	flex-grow: 1;
	max-width: 358px;
	font-size: 24px;
	font-weight: 700;
	color: #ED6D30;
}

/* Cart. */

@media only screen and (max-width: 1030px) {

	/* Cart. */

	.cart {
		top: 60px !important;
	}

	/* Cart. */

}

@media only screen and (max-width: 900px) {

	/* Cart. */

	.cart {
		overflow-y: scroll;

		left: 0;
		bottom: 0;

		width: 100%;
		max-width: none;
		margin: 0;
		border: 0;
		border-radius: 0;
		padding: 24px var(--bone) 0;
	}

	.cart_net {
		display: flex;
		justify-content: space-between;
		flex-direction: column;

		height: 100%;
	}

	.cart_net._null {
		text-align: center;
	}

	.cart_txt {
		max-width: 400px;
		padding-bottom: 40px;
	}

	.cart_txt .cart_btn {
		width: 100%;
	}

	.cart_total {
		padding-bottom: 30px;
	}

	.cart_total_price {
		font-size: 32px;
	}

	.cart_product._complect:before {
		top: -12px;
		left: -20px;
		right: -20px;
		bottom: -20px;
	}

	.cart_product._complect .cart_product_info:not(:first-child) {
		margin-top: 20px;
	}

	/* Cart. */

}

@media only screen and (min-height: 600px) {

	/* Cart. */

	.cart_net._null {
		justify-content: center;
		text-align: center;
	}

	/* Cart. */
}

@media only screen and (max-width: 770px) {

	/* Cart. */

	.cart_product,
	.cart_product_bottom {
		display: grid;
		grid-template-columns: 90px 1fr 120px;
		grid-auto-flow: dense;
	}

	.cart_product._complect {
		grid-gap: 0;
	}

	.cart_product_info,
	.cart_product_bottom,
	.cart_product_caption {
		grid-column: 1/4;
	}

	.cart_product_txt {
		max-width: none;
	}

	.cart_total_price {
		font-size: 24px;
	}

	.cart_product_total {
		grid-column: 2/3;

		font-size: 19px;
		text-align: left;
	}

	.cart_product_del {
		grid-column: 1/2;
	}

	.cart_product_amount {
		grid-column: 3/4;
	}

	/* Cart. */

}

@media only screen and (max-width: 600px) {

	/* Cart. */

	.cart_products {
		grid-gap: 24px;

		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.cart_product,
	.cart_product_bottom {
		grid-template-columns: 60px 1fr 100px;
		grid-gap: 24px 20px;
	}

	.cart_product:not(:last-child) {
		padding-bottom: 24px;
		border-bottom: 1px solid #eee;
	}

	.cart_product._complect:before {
		bottom: 0;
	}

	.cart_product_info {
		grid-gap: 20px;
		align-items: flex-start;
	}

	.cart_product_img img {
		--size: 60px;
	}

	.cart_product_txt {
		display: flex;
		flex-direction: column-reverse;
		grid-gap: 10px;
	}

	.cart_product_price {
		flex-wrap: wrap;
		margin-bottom: 0;
	}

	.cart_total {
		position: sticky;
		bottom: 0;
		grid-gap: 12px;

		margin: 0 calc(var(--bone_size) * -1);
		padding-left: var(--bone_size);
		padding-bottom: 0;
		border-top: 1px solid #eee;
		background-color: var(--bg);
		z-index: 1;
	}

	.cart_total_price {
		grid-gap: 6px;
		font-size: 19px;
	}

	.cart_total .cart_btn {
		height: 56px;
		padding: 0 24px;
		border-radius: 0;
	}

	.cart_btn span {
		display: none;
	}

	.cart_product._complect .cart_product_info {
		grid-row-gap: 4px;
		align-items: center;
		flex-wrap: wrap;
	}

	.cart_product._complect .cart_product_name {
		max-width: calc(100% - 80px);
	}

	.cart_product._complect .cart_product_price {
		justify-content: flex-start;

		width: 100%;
		padding-left: 80px;
	}

	.cart_product_bottom {
		margin-top: 10px;
		padding-top: 8px;
	}

	.cart_product_caption {
		font-size: 19px;
	}

	.cart_product_del {
		--size: 15px;
	}

	/* Cart. */

}

@media only screen and (max-width: 360px) {

	/* Cart. */

	.cart_total_price {
		font-size: 16px;
	}

	/* Cart. */

}