.pst-frontend-seatmap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
	font-family: inherit;
}

.pst-fs-map {
	flex: 1 1 400px;
	background: #f6f7f7;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
}

.pst-fs-seat {
	cursor: pointer;
	stroke: rgba(0,0,0,.15);
	stroke-width: 1;
	transition: opacity .1s;
}

.pst-fs-seat--booked,
.pst-fs-seat--locked {
	cursor: not-allowed;
}

.pst-fs-seat--mine {
	stroke: #111;
	stroke-width: 3;
}

.pst-fs-seat:hover {
	opacity: .8;
}

.pst-frontend-seatmap.pst-preview-only {
	display: block;
}

.pst-frontend-seatmap.pst-preview-only .pst-fs-map {
	cursor: default;
}

.pst-frontend-seatmap.pst-preview-only .pst-fs-seat {
	cursor: default;
}

.pst-fs-summary {
	flex: 0 0 260px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 16px;
}

.pst-fs-summary h4 {
	margin-top: 0;
}

.pst-fs-selected-list {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	font-size: 14px;
}

.pst-fs-selected-list li {
	padding: 4px 0;
	border-bottom: 1px solid #f0f0f0;
}

.pst-fs-empty {
	color: #888;
}

.pst-fs-total {
	font-weight: 700;
	margin-bottom: 12px;
}

.pst-fs-checkout-btn {
	width: 100%;
}
