.p-block-kits {
	position: relative;
}
.p-block-kits .swiper-mod-navigation {
	right: 20px;
	top: 15px;
}
.kits__title {
	font-size: 16px;
	color: var(--up-text-wd-color);
	margin-bottom: 20px;
	font-weight: 500;
}
.p-block-kits .swiper-wrapper {
	padding-top: 1px;
	padding-bottom: 1px;
}
.p-block-kits .row-kit {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 26px;
}
.p-block-kits .products-kit {
	display: flex;
	gap: 26px;
	width: calc(100% - 1px);
	flex-direction: column;
	flex-shrink: 0;
}
.p-block-kits .product-kit {
	border: 1px solid var(--up-border-color);
	border-radius: 10px;
	position: relative;
	background: var(--up-bg-wg);
	flex: 1;
	display: flex;
	flex-direction: row;
}
.p-block-kits .product-kit .kit-item {
	flex-direction: row;
	gap: 15px;
	padding: 15px;
}
.p-block-kits .product-kit .image {
	min-width: 30%;
	width: 30%;
	padding: 5px;
	background: #fff;
	border-radius: 6px;
}
.p-block-kits .product-kit .image img {
	padding: 2px;
	font-size: 0px;
	margin: 0 auto;
	max-width: 100%;
	object-fit: contain;
	max-height: 100px;
}
.p-block-kits .product-kit .caption {
	display: flex;
	gap: 10px;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}
.p-block-kits .product-kit .price {
	font-size: 16px !important;
	margin-top: auto;
	font-weight: 700;
}
.p-block-kits .product-kit .product-name a {
	-webkit-line-clamp: 2;
	font-size: 14px;
	line-height: 22px;
	color: var(--up-text-wd-color);
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
}
.p-block-kits .product-kit-totals {
	width: calc(100% - 1px);
	flex-shrink: 0;
	position: relative;
}
.p-block-kits .product-kit-totals .kit-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--up-bg-wg);
	border: 1px solid var(--up-border-color);
	border-radius: 10px;
	padding: 20px 15px 15px 15px;
	height: 100%;
	text-align: center;
}
.p-block-kits .kit-item-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--up-text-wd-color);
	margin-top: auto;
}
.p-block-kits .kit-group-totals {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin-bottom: 20px;
}
.p-block-kits .kit-totals {
	font-size: 32px;
	font-weight: 800;
	color: #e53935;
	line-height: 1;
	position: relative;
	padding-bottom: 20px;
	width: 100%;
	border-bottom: 1px solid var(--up-border-color);
}
.p-block-kits .kit-discount {
	background: #EAF5F1;
	color: #2C9B6C;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	width: 100%;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:5px;
}
.p-block-kits .kit-discount .kit-discount-total {
	font-weight: 600;
}
.p-block-kits .kit-cart {
	width: 100%;
	margin-top: auto;
}
.p-block-kits .kit-cart .btn-general {
	width: 100%;
	gap: 5px;
}
.kit-price-group {
	display: flex;
	gap: 10px;
}
.p-block-kits .btn-change-kit {
	color: #557DC0;
	background: #F7F8FB;
	padding: 2px;
	border: 0px;
	height: 34px;
	min-width: 34px;
	padding: 5px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.p-block-kits .btn-change-kit .text-chenge-product {
	display: none;
}
.p-block-kits .product-kit:first-child::after {
	content: '+';
	font-size: 28px;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	position: absolute;
	z-index: 1;
	left: 50%;
	bottom: -27px;
	transform: translateX(-50%);
}
.p-block-kits .product-kit-totals::before {
	content: '=';
	font-size: 28px;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	position: absolute;
	z-index: 1;
	left: 50%;
	top: -28px;
	transform: translateX(-50%);
}
@media (min-width: 992px) {
	.p-block-kits .row-kit {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
	}
	.p-block-kits .products-kit {
		flex-direction: row;
		gap: 26px;
		width: calc(66.66% - 17.33px);
		flex-shrink: 0;
	}
	.p-block-kits .product-kit {
		flex-direction: column;
	}
	.p-block-kits .product-kit .kit-item {
		flex-direction: column;
	}
	.p-block-kits .product-kit-totals {
		width: calc(33.33% - 9.66px);
	}

	.p-block-kits .product-kit .image {
		min-width: 100%;
		width: 100%;
	}

	.p-block-kits .product-kit:first-child::after {
		right: -28px;
		top: 50%;
		transform: translateY(-50%);
		left: auto;
	}
	.p-block-kits .product-kit-totals::before {
		left: -28px;
		top: 50%;
		transform: translateY(-50%);
	}
}

#modal-kits-options .info-kit-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#modal-kits-options .kit-discount {
	background: #EAF5F1;
	color: #2C9B6C;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

#modal-kits-options .kit-totals {
	font-size: 24px;
	font-weight: 800;
	color: #e53935;
	line-height: 1;
	position: relative;
}
#modal-kits-options .product-kit-totals {
	gap: 15px;
	align-items: center;
}

@media (max-width: 600px) {
	#modal-kits-options .info-kit-bottom {
		flex-wrap: wrap;
		gap:15px;
	}
	#modal-kits-options .product-kit-totals {
		width: 100%;
		justify-content: space-between;
	}
	#modal-kits-options .kit-cart,
	#modal-kits-options .kit-cart .btn-general {
		width: 100%;
	}
}
#modal-kits-options #product {
	margin-bottom: 0;
}
#modal-kits-options #product .options {
	padding-bottom: 25px;
	margin-bottom: 0;
	margin-top: 0;
}
#modal-kits-options .kit-cart {
	display: flex;
	justify-content: flex-end;
}
#modal-kits-products .item {
	padding: 0px 10px;
	margin-bottom: 20px;
}
#modal-kits-products .item:last-child{
	margin-bottom: 0;
}

#modal-kits-products .item .product-thumb {
	border-radius: 10px;
	-webkit-transition: box-shadow .1s ease, opacity .1s ease;
	transition: box-shadow .1s ease,opacity .1s ease;
	box-shadow: 0px 0px 0px 1px var(--up-border-color);
	padding: 15px;
	cursor: pointer;
	position: relative;
}

#modal-kits-products .product-thumb .caption {
	padding: 0;
	margin-left: 20px;
}
#modal-kits-products .item .product-thumb.active-prod,
#modal-kits-products .item .product-thumb:hover {
	outline: 2px solid #84C1A8;
}
.dark-theme #modal-kits-products .item .product-thumb:hover,
.dark-theme #modal-kits-products .item .product-thumb.active-prod {
	background: var(--up-bg-main);
}
#modal-kits-products .item .product-thumb .image {
	margin-bottom: 0;
	min-height: auto;
	min-width:35%;
	padding: 5px;
}
#modal-kits-products .item .product-name {
	margin-bottom: 5px;
	text-align: left;
	font-size: 15px;
	color: var(--up-text-wd-color);
	height: auto;
	min-height: auto;
}

[id^="input-kit-option"] {
	display: flex;
	flex-wrap: wrap;
	gap:10px;
}