.mb-picker {
	display: grid;
	gap: 14px;
	margin: 0 0 24px;
	max-width: 520px;
}

.mb-picker__row {
	display: grid;
	gap: 6px;
}

.mb-picker__label {
	font-weight: 600;
}

.mb-picker select {
	min-height: 40px;
	width: 100%;
}

.mb-picker__note {
	color: #b32d2e;
	font-size: 0.9em;
	margin: 0;
}

.mb-picker__types {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: grid;
	gap: 8px;
	padding-top: 12px;
}

.mb-picker__type {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr auto 80px;
}

.mb-picker__type-name {
	font-weight: 600;
}

.mb-picker__qty {
	min-height: 38px;
	text-align: center;
	width: 80px;
}

.mb-picker__attendees {
	display: grid;
	gap: 8px;
}

.mb-picker__attendee {
	display: grid;
	gap: 4px;
	font-size: 0.9em;
}

.mb-picker__footer {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
}

.mb-picker__total {
	font-size: 1.1em;
	font-weight: 700;
}

.mb-picker__empty {
	font-style: italic;
}

.mb-cart-type {
	display: inline-block;
	font-size: 0.85em;
	opacity: 0.8;
}

.mb-cart-type::before {
	content: "\2014";
	margin: 0 6px;
}

@media (max-width: 480px) {
	.mb-picker__type {
		grid-template-columns: 1fr 70px;
	}

	.mb-picker__type-price {
		grid-column: 1;
	}
}

/* Basket flag pop-up */
.mb-flag-overlay {
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 16px;
	position: fixed;
	z-index: 100000;
}

.mb-flag-modal {
	background: #fff;
	border-radius: 8px;
	color: #222;
	max-height: 90vh;
	max-width: 520px;
	overflow: auto;
	padding: 24px;
	width: 100%;
}

.mb-flag-modal h2 {
	margin-top: 0;
}

.mb-flag {
	border-top: 1px solid #e5e5e5;
	padding: 12px 0;
}

.mb-flag__ack {
	display: block;
	font-weight: 600;
	margin-top: 8px;
}

.mb-flag-modal__actions {
	margin: 12px 0 0;
	text-align: right;
}

/* My Account and thank-you ticket lists */
.mb-ticket-list {
	border-collapse: collapse;
	width: 100%;
}

.mb-ticket-list th,
.mb-ticket-list td {
	padding: 8px;
	text-align: left;
}

.mb-calendar {
	display: grid;
	gap: 8px;
}

.mb-calendar__day {
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	padding: 10px 12px;
}

.mb-calendar__date {
	font-weight: 600;
	min-width: 140px;
}

.mb-calendar__slot {
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.06);
	font-size: 0.85em;
	padding: 2px 10px;
}

.mb-calendar__slot--low {
	background: #fdf0c9;
}

.mb-calendar__slot--out {
	opacity: 0.5;
	text-decoration: line-through;
}
