<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Visit Days Buttons
-------------------------------------------------------------- */

/* reset styling */
.plu-visit-days-event-button {
	display: flex;
	justify-content: flex-start;
}

.plu-visit-days-event-button .event-button {
	display: block;
	margin: 0;
	font-size: 15px;
	padding: 12px 16px;
	border-radius: 4px;
	background: #000;
	color: #fff;
	border: 1px solid transparent;
}

/* colors */
.plu-visit-days-event-button .event-button.vdb-black {
	background: #000;
	color: #fff;
}

.plu-visit-days-event-button .event-button.vdb-gold {
	background: #fbba37;
	color: #000;
}

.plu-visit-days-event-button .event-button.vdb-white {
	background: #fff;
	color: #000;
	border-color: #f2f2f2;
}

.plu-visit-days-event-button .event-button.vdb-gray {
	background: #999;
	color: #000;
}

/* alignment */
.plu-visit-days-event-button.vdb-left {
	justify-content: flex-start;
}

.plu-visit-days-event-button.vdb-right {
	justify-content: flex-end;
}

.plu-visit-days-event-button.vdb-center {
	justify-content: center;
}

/* width */
.plu-visit-days-event-button .event-button.vdb-normal {
	width: auto;
}

.plu-visit-days-event-button .event-button.vdb-full-width {
	width: 100%;
}</pre></body></html>