/**
 * BB Assurantie — [openingstijden] weekoverzicht.
 */

.bb-openingstijden {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--bb-font-family);
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--bb-foreground);
}

.bb-openingstijden__row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: baseline;
	column-gap: 1.5rem;
	width: 100%;
	margin: 0;
	padding: 0;
}

.bb-openingstijden__day {
	justify-self: start;
	text-align: left;
}

.bb-openingstijden__time {
	justify-self: end;
	text-align: right;
	white-space: nowrap;
}

.bb-openingstijden__row.is-today .bb-openingstijden__day,
.bb-openingstijden__row.is-today .bb-openingstijden__time {
	font-weight: 700;
}
