/* Kosik: expedice produktu (modal) — blok "odeslat pozdeji" v kroku 3 ma styly v basket-checkout.css (.ck-shiplater) */

.expeditionModalDialog {
	max-width: 650px;
}
.expeditionModalDialog .modal-content {
	border-radius: 20px;
	border: 0;
	padding: 8px;
}
.expeditionModalDialog .modal-header {
	border: 0;
	background: transparent;
	padding: 14px 14px 0;
	justify-content: flex-end;
}
.expeditionModalDialog .modal-header .modal-title {
	display: none;
}
.expeditionModalDialog .modal-header .close {
	font-size: 22px;
	opacity: .5;
}
.expeditionModalDialog .modal-body {
	padding: 8px 32px 32px;
}
.expeditionModalDialog .modal-footer {
	display: none;
}

.expeditionModalBody {
	overflow-x: auto;
}
.expTitle {
	text-align: center;
	font-size: 26px;
	font-weight: 800;
	color: #000;
	margin: 0 0 8px;
}
.expIntro {
	text-align: center;
	font-size: 13.5px;
	color: #888;
	margin: 0 0 22px;
}
.expSectionTitle {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin: 24px 0 12px;
}
.expRows {
	display: flex;
	flex-direction: column;
}
.expRow {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid #f0eef4;
}
.expRows .expRow:last-child {
	border-bottom: 0;
}
.expRowLogo {
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.expRowLogo img {
	max-width: 48px;
	max-height: 34px;
	object-fit: contain;
}
.expRowName {
	flex: 1;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}
.expRowDates {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}
.expRowDateLine {
	display: inline-flex;
	gap: 4px;
	font-size: 13px;
	white-space: nowrap;
}
.expRowDateLabel {
	color: #999;
}
.expRowDateVal {
	font-weight: 700;
	color: #2f9e44;
	text-transform: capitalize;
}
.expCloseBtn {
	display: block;
	width: 100%;
	margin-top: 28px;
	padding: 13px;
	border: 0;
	border-radius: 999px;
	background: #d89d97;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .15s ease;
}
.expCloseBtn:hover {
	background: #c98882;
}
