.ppb-dpb-block {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ppb-dpb-card {
	padding: 16px 16px 10px;
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 16px 16px 14px;
}

.ppb-dpb-section + .ppb-dpb-section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.ppb-dpb-section__title {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

/* DELIVERY */

.ppb-dpb-delivery-item {
	border-top: 1px solid #eee;
}

.ppb-dpb-delivery-item__summary {
	display: grid;
	grid-template-columns: max-content 1fr max-content;
	align-items: center;
	column-gap: 12px;
	padding: 6px 0;
	list-style: none;
	cursor: pointer;
}

.ppb-dpb-delivery-item__summary::-webkit-details-marker {
	display: none;
}

.ppb-dpb-delivery-item__icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 42px;
}

.ppb-dpb-delivery-item__icon img {
	display: block;
	max-width: none;
	max-height: 34px;
	width: auto;
	height: auto;
}

.ppb-dpb-delivery-item__main {
	min-width: 0;
}

.ppb-dpb-delivery-item__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: #111;
}

.ppb-dpb-delivery-item__notice {
	margin-top: 3px;
	font-size: 13px;
	line-height: 1.25;
	color: #777;
}

.ppb-dpb-delivery-item__side {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ppb-dpb-delivery-item__range {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #0090cb;
	white-space: nowrap;
}

.ppb-dpb-delivery-item__arrow {
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	flex: 0 0 10px;
}

.ppb-dpb-delivery-item__arrow::before,
.ppb-dpb-delivery-item__arrow::after {
	content: '';
	position: absolute;
	top: 4px;
	width: 6px;
	height: 2px;
	background: #222;
	transition: transform 0.2s ease;
}

.ppb-dpb-delivery-item__arrow::before {
	left: 0;
	transform: rotate(45deg);
}

.ppb-dpb-delivery-item__arrow::after {
	right: 0;
	transform: rotate(-45deg);
}

.ppb-dpb-delivery-item[open] .ppb-dpb-delivery-item__arrow::before {
	transform: rotate(-45deg);
}

.ppb-dpb-delivery-item[open] .ppb-dpb-delivery-item__arrow::after {
	transform: rotate(45deg);
}

.ppb-dpb-delivery-item__content {
	padding: 0 0 14px 0;
}

.ppb-dpb-delivery-subitem {
	display: grid;
	grid-template-columns: 1fr max-content;
	align-items: center;
	column-gap: 12px;
	padding: 8px 0;
}

.ppb-dpb-delivery-subitem__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #111;
}

.ppb-dpb-delivery-subitem__price {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #2f95dc;
	white-space: nowrap;
}

.ppb-dpb-delivery-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	padding-top: 14px;
	padding-bottom: 5px;
	border-top: 1px solid #eee;
}

.ppb-dpb-delivery-note__icon {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.ppb-dpb-delivery-note__icon img {
	display: block;
	max-width: 18px;
	height: auto;
}

.ppb-dpb-delivery-note__text {
	font-size: 13px;
	line-height: 1.45;
	color: #565656;
}

/* PAYMENT */

.ppb-dpb-payment-item {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: center;
	column-gap: 14px;
	padding: 6px 0;
	border-top: 1px solid #eee;
}

.ppb-dpb-payment-item:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.ppb-dpb-payment-item__icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 42px;
}

.ppb-dpb-payment-item__icon img {
	display: block;
	max-width: none;
	max-height: 34px;
	width: auto;
	height: auto;
}

.ppb-dpb-payment-item__content {
	min-width: 0;
	text-align: right;
}

.ppb-dpb-payment-item__title {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	color: #111;
	text-align: right;
}

.ppb-dpb-payment-item__text {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.45;
	color: #666;
	text-align: right;
}

@media (max-width: 767px) {
	.ppb-dpb-card {
		margin-top: 30px;
		margin-bottom: -30px;
	}

	.ppb-dpb-delivery-item__summary {
		grid-template-columns: max-content 1fr;
		row-gap: 8px;
	}

	.ppb-dpb-delivery-item__side {
		grid-column: 2;
		justify-content: space-between;
	}

	.ppb-dpb-payment-item {
		column-gap: 12px;
	}

	.ppb-dpb-payment-item__icon,
	.ppb-dpb-delivery-item__icon {
		min-height: 34px;
	}

	.ppb-dpb-payment-item__icon img,
	.ppb-dpb-delivery-item__icon img {
		max-height: 34px;
	}
}