@charset "UTF-8";
:root {
	--availability-good: #008B38;
	--availability-low: #FCA311;
	--availability-last-few: #db1111;
	--availability-none: #ceced0;
	--rgb-primary-accent-colour: 14, 78, 182;
	--rgb-secondary-accent-colour: 28, 152, 237;
	--rgb-cta-hover: 16, 124, 198;
	--global-primary-text-colour: #353535;
	--global-secondary-text-colour: #6f6f6f;
	--global-font-size-base: 18px;
	--global-font-size-small: 14px;
	--global-primary-accent-colour: rgb(var(--rgb-primary-accent-colour));
	--global-secondary-accent-colour: rgb(var(--rgb-secondary-accent-colour));
	--global-tertiary-accent-colour: #ccc;
	--global-light-grey: #ccc;
	--global-very-light-grey: #F7F7F7;
	--global-very-light-blue: #e8f4fd;
	--global-heading-h1: clamp(32px,3.2vw,44px)/1.1 "Archivo-ExtraBold", Helvetica, Arial, sans-serif ;
	--global-heading-h2: clamp(28px,2.8vw,40px)/1.1 "Archivo-ExtraBold", Helvetica, Arial, sans-serif ;
	--global-heading-h3: clamp(24px,2.5vw,34px)/1.1 "Archivo-Medium", Helvetica, Arial, sans-serif ;
	--global-heading-h4: clamp(20px,2.2vw,28px)/1.1 "Archivo-Bold", Helvetica, Arial, sans-serif ;
	--global-heading-h5: clamp(18px,1.9vw,20px)/1.1 "Archivo-Bold", Helvetica, Arial, sans-serif;
	--global-heading-h6: clamp(16px,1.7vw,18px)/1.1 "Archivo-Bold", Helvetica, Arial, sans-serif;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(359deg);
	}
}
body.farlo-page {
	/* Container */
	/* Calendar Legend */
	/* Calendar layout */
	/* Header (shared) */
	/* Toggle */
	/* Buttons */
}
body.farlo-page > .site__wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 1440px;
	padding: 0 10px;
}
body.farlo-page .site {
	overflow: initial;
}
body.farlo-page .container {
	margin: 0 auto;
	max-width: 1440px !important;
	width: 100%;
}
body.farlo-page .page-container .farlo-breadcrumbs {
	padding: 0;
}
body.farlo-page #site-main {
	min-height: 100vh;
}
body.farlo-page .mobile-hidden {
	display: none;
}
@media (min-width: 980px) {
	body.farlo-page .mobile-hidden {
		display: block;
	}
}
body.farlo-page .desktop-hidden {
	display: block;
}
@media (min-width: 980px) {
	body.farlo-page .desktop-hidden {
		display: none;
	}
}
body.farlo-page .hidden {
	display: none !important;
}
body.farlo-page {
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.3334;
}
body.farlo-page .text-link,
body.farlo-page .btn-readmore {
	color: var(--global-primary-accent-colour);
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 600;
	text-decoration: underline;
	text-transform: none;
	transition: color 0.3s ease-in-out;
}
body.farlo-page .text-link:hover,
body.farlo-page .btn-readmore:hover {
	color: var(--global-secondary-accent-colour);
	text-decoration: none;
}
body.farlo-page .text-link:is(button),
body.farlo-page .btn-readmore:is(button) {
	background-color: transparent;
	border: 0;
	height: auto;
	letter-spacing: normal;
	line-height: 1.3334;
	max-width: none;
	padding: 0;
	width: auto;
}
body.farlo-page .call-to-action .call-to-action-alert a:hover {
	background-color: rgb(var(--rgb-cta-hover));
}
@media screen and (max-width: 979.9px) {
	body.farlo-page .show-content-container-sidebar__cta {
		transition: transform 0.3s ease-in-out;
	}
	body.farlo-page .show-content-container-sidebar__cta[data-footer-scroll] {
		transition: none;
	}
	body.farlo-page .show-content-container-sidebar__cta.hide-for-calendar {
		transform: translateY(calc(100% + 20px));
	}
}
@media screen and (max-width: 979.9px) {
	body.farlo-page .enhanced-show-content-wrapper-v2 main.content {
		padding-bottom: 0;
	}
}
body.farlo-page h1,
body.farlo-page .h1 {
	font: var(--global-heading-h1);
	text-transform: uppercase;
}
body.farlo-page h2,
body.farlo-page .h2 {
	font: var(--global-heading-h2);
}
body.farlo-page h3,
body.farlo-page .h3 {
	font: var(--global-heading-h3);
	text-transform: uppercase;
}
body.farlo-page h4,
body.farlo-page .h4 {
	font: var(--global-heading-h4);
}
body.farlo-page h5,
body.farlo-page .h5 {
	font: var(--global-heading-h5);
	text-transform: uppercase;
}
body.farlo-page h6,
body.farlo-page .h6 {
	font: var(--global-heading-h6);
}
body.farlo-page p {
	font-size: clamp(16px, 1.6vw, 18px);
}
body.farlo-page .debug_info {
	background: #f0f0f0;
	font-size: 1.2rem;
	line-height: 1;
	margin-top: 50px;
	padding: 40px;
}
body.farlo-page .debug_info h4 {
	font-size: 2rem;
	letter-spacing: normal;
	margin: 0 0 20px;
}
body.farlo-page .debug_info pre {
	font-family: "Courier New", Courier, monospace;
}
body.farlo-page .btn.btn-secondary {
	background-color: white;
	border: 1px solid var(--global-light-grey);
	color: var(--global-primary-text-colour);
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
body.farlo-page .btn.btn-secondary:hover, body.farlo-page .btn.btn-secondary:active, body.farlo-page .btn.btn-secondary:focus {
	border-color: var(--global-secondary-accent-colour);
	color: var(--global-secondary-accent-colour);
}
body.farlo-page .btn.btn-small {
	font-size: var(--global-font-size-small);
	line-height: 1;
	min-width: auto;
	padding: 8px;
	padding-left: 16px;
	padding-right: 16px;
	width: auto;
}
body.farlo-page .btn.btn-sentence {
	letter-spacing: normal;
	text-transform: none;
}
body.farlo-page .btn.btn-tag {
	background-color: white;
	border-radius: 4px 4px 4px 4px;
	color: var(--global-primary-accent-colour);
	font-size: var(--global-font-size-small);
	font-weight: normal;
	letter-spacing: normal;
	line-height: 1.2;
	padding: 5px 14px;
	text-transform: none;
	white-space: nowrap;
	width: auto;
}
body.farlo-page .btn.btn-tag:hover {
	color: var(--global-secondary-accent-colour);
}
body.farlo-page .btn-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
body.farlo-page [data-content-toggle] {
	position: relative;
}
body.farlo-page [data-content-toggle] [data-toggle-link] {
	align-items: center;
	color: var(--global-primary-accent-colour);
	cursor: pointer;
	display: inline-flex;
	font-weight: 600;
	gap: 4px;
	text-decoration: underline;
	transition: color 0.3s ease-in-out;
}
body.farlo-page [data-content-toggle] [data-toggle-link]:hover {
	color: var(--global-secondary-accent-colour);
	text-decoration: none;
}
body.farlo-page [data-content-toggle] [data-toggle-link] .chevron {
	display: inline-flex;
	transition: transform 0.2s ease;
}
body.farlo-page [data-content-toggle].is-expanded [data-toggle-link] .chevron {
	transform: rotate(180deg);
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp]:not(.is-expanded) [data-toggle-content] {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="3"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 3;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="4"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 4;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="5"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 5;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="6"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 6;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="7"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 7;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="8"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 8;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp][data-max-lines="10"]:not(.is-expanded) [data-toggle-content] {
	-webkit-line-clamp: 10;
}
body.farlo-page [data-content-toggle][data-toggle-mode=clamp].is-expanded [data-toggle-content] {
	display: block;
}
body.farlo-page [data-content-toggle][data-toggle-mode=height] [data-toggle-content][style*="display: none"] {
	display: none;
}
body.farlo-page .farlo-ui-icons__icon-container {
	align-items: center;
	display: flex;
	height: calc(8 * var(--size) * 1px);
	justify-content: center;
	width: calc(8 * var(--size) * 1px);
}
body.farlo-page .farlo-ui-icons__icon-container svg {
	fill: var(--fill);
	height: calc(8 * var(--size) * 1px);
	width: calc(8 * var(--size) * 1px);
}
body.farlo-page .farlo-ui-lightbox {
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 16px;
	pointer-events: auto;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-ui-lightbox {
		padding: 32px;
	}
}
body.farlo-page .farlo-ui-lightbox--video .farlo-ui-lightbox__content {
	background: transparent;
	max-height: 95vh;
	max-width: 95vw;
	padding: 0;
}
body.farlo-page .farlo-ui-lightbox--video .farlo-ui-lightbox__video-container {
	align-items: center;
	background: #000;
	display: flex;
	height: 90vh;
	justify-content: center;
	max-height: 900px;
	max-width: 1600px;
	position: relative;
	width: 90vw;
}
body.farlo-page .farlo-ui-lightbox--video .farlo-ui-lightbox__video-container iframe,
body.farlo-page .farlo-ui-lightbox--video .farlo-ui-lightbox__video-container video {
	height: 100%;
	left: 0;
	max-height: 100%;
	max-width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	position: absolute;
	top: 0;
	width: 100%;
}
body.farlo-page .farlo-ui-lightbox--video .farlo-ui-lightbox__video-container iframe:focus,
body.farlo-page .farlo-ui-lightbox--video .farlo-ui-lightbox__video-container video:focus {
	outline: none;
}
body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__header {
	border-bottom: 1px solid var(--global-light-grey);
	margin-bottom: 16px;
	padding-bottom: 16px;
}
body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__title {
	color: var(--global-primary-accent-colour);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}
body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body {
	max-height: 60vh;
	overflow-y: auto;
	text-align: left;
}
body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body iframe {
	border: 0;
	max-width: 700px;
	min-height: 400px;
	width: 100%;
	width: 80vw !important;
}
body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body p, body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body ul, body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body ol, body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body table {
	margin-bottom: 1rem;
}
body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body p:last-child, body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body ul:last-child, body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body ol:last-child, body.farlo-page .farlo-ui-lightbox--content .farlo-ui-lightbox__body table:last-child {
	margin-bottom: 0;
}
body.farlo-page .farlo-ui-lightbox__content {
	background: white;
	border-radius: 8px 8px 8px 8px;
	max-height: 80lvh;
	max-width: 800px;
	padding: 16px;
	position: relative;
	text-align: center;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-ui-lightbox__content {
		padding: 32px;
	}
}
body.farlo-page .farlo-ui-lightbox__close-button {
	background: transparent;
	border: 0;
	color: white;
	font-size: 48px;
	height: 40px;
	line-height: 40px;
	min-width: 0;
	position: absolute;
	right: 0;
	top: -48px;
	width: 40px;
}
body.farlo-page .farlo-loop {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(2, calc((100% - 32px) / 2));
}
@media (min-width: 640px) {
	body.farlo-page .farlo-loop {
		display: grid;
		gap: 32px;
		grid-template-columns: repeat(3, calc((100% - 64px) / 3));
	}
}
body.farlo-page .farlo-loop .farlo-card {
	border: 1px solid #dadae0;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}
body.farlo-page .farlo-loop .farlo-card .farlo-card__promo {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 0 0 3px 3px;
	color: white;
	line-height: 1;
	padding: 5px 8px;
	position: absolute;
	right: 0px;
	top: 0px;
}
body.farlo-page .farlo-loop .farlo-card h3 {
	margin: 0;
}
body.farlo-page .farlo-loop .farlo-card a {
	color: var(--wp--preset--color--primary-colour);
	text-decoration: none;
}
body.farlo-page .farlo-loop .farlo-card a:hover {
	text-decoration: none !important;
}
body.farlo-page .farlo-loop .farlo-card__card-container {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 20px;
}
body.farlo-page .farlo-loop .farlo-card__short-description:empty {
	display: none;
}
body.farlo-page .farlo-loop .farlo-card img {
	display: block;
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
body.farlo-page .farlo-loop .farlo-card img[src=""] {
	max-width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	position: relative;
}
body.farlo-page .farlo-loop .farlo-card img[src=""]:before {
	background: var(--global-tertiary-colour);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
body.farlo-page #farlo-cal *,
body.farlo-page #farlo-cal :after,
body.farlo-page #farlo-cal :before {
	box-sizing: border-box;
}
body.farlo-page .farlo-cal-container {
	font-family: var(--global-button-font-family);
	position: relative;
}
@media (min-width: 640px) {
	body.farlo-page .farlo-cal-container {
		margin-left: 0;
		margin-right: 0;
	}
}
body.farlo-page .farlo-cal-container button svg {
	height: 24px;
	width: 24px;
}
body.farlo-page .farlo-cal-legend {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-bottom: 16px;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-cal-legend {
		gap: 24px;
		margin-bottom: 0;
		margin-top: 8px;
		position: absolute;
		right: 0;
	}
}
body.farlo-page .farlo-cal-legend__item {
	align-items: center;
	display: flex;
	gap: 8px;
}
body.farlo-page .farlo-cal-legend__indicator {
	border-radius: 50%;
	display: block;
	height: 8px;
	width: 8px;
}
body.farlo-page .farlo-cal-legend__indicator--good {
	background-color: var(--availability-good);
}
body.farlo-page .farlo-cal-legend__indicator--limited {
	background-color: var(--availability-low);
}
body.farlo-page .farlo-cal-legend__indicator--low {
	background-color: var(--availability-last-few);
}
body.farlo-page .farlo-cal-legend__label {
	color: var(--global-primary-text-colour);
	font-size: 14px;
	line-height: 1.4;
}
body.farlo-page #farlo-cal {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin: 0 auto;
	margin-left: -20px;
	margin-right: -20px;
	overflow: hidden;
	position: relative;
	/* Performance pill (general) */
}
@media (min-width: 980px) {
	body.farlo-page #farlo-cal {
		flex-direction: row;
		margin-left: 0;
		margin-right: 0;
	}
}
body.farlo-page #farlo-cal .farlo-cal-btn:active {
	box-shadow: 0 0 0 2px rgba(16, 152, 158, 0.1);
}
body.farlo-page #farlo-cal .farlo-cal-week {
	display: flex;
	flex-wrap: wrap;
	font-weight: 700;
	margin-bottom: 8px;
}
body.farlo-page #farlo-cal .farlo-cal-week span {
	flex: 0 0 14.28%;
	flex-direction: column;
	font-size: 16px;
	font-weight: 400;
	max-width: 14.28%;
	padding: 0;
	text-align: center;
}
body.farlo-page #farlo-cal .farlo-cal-header,
body.farlo-page #farlo-cal .farlo-cal-week {
	position: relative;
}
body.farlo-page #farlo-cal .farlo-cal-body {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
@media (min-width: 980px) {
	body.farlo-page #farlo-cal .farlo-cal-body {
		border: 1px solid var(--global-light-grey);
		border-radius: 8px 8px 8px 8px;
	}
}
body.farlo-page #farlo-cal .farlo-cal-body:empty {
	min-height: 300px;
	position: relative;
}
body.farlo-page #farlo-cal .farlo-cal-body:empty:after {
	content: "Loading...";
	inset: 0;
	line-height: 300px;
	position: absolute;
	text-align: center;
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date {
	border-radius: 0;
	flex: 0 0 14.28%;
	line-height: 1;
	max-width: 14.28%;
	min-height: 40px;
	padding: 4px;
	position: relative;
	text-align: left;
}
@media (min-width: 640px) {
	body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date {
		min-height: 88px;
		padding: 8px;
	}
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date:before {
	border: 0.5px solid var(--global-light-grey);
	content: "";
	inset: 0;
	position: absolute;
	transition: background 0.3s ease;
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date > span {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	font-size: 12px;
	gap: 4px;
}
@media (min-width: 640px) {
	body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date > span {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date--active.cal-day-select {
	cursor: pointer;
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date--selected:before {
	background: var(--global-very-light-grey);
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date--disabled {
	background: var(--global-very-light-grey);
	cursor: not-allowed;
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date .farlo-cal-date-perf {
	color: var(--global-primary-text-colour);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	font-size: 12px;
	font-weight: 400;
	gap: 4px;
	text-transform: uppercase;
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date .farlo-cal-date-perf a {
	border-radius: 4px 4px 4px 4px;
	color: var(--global-primary-text-colour);
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 4px;
	padding-top: 6px;
	transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
@media (min-width: 980px) {
	body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date .farlo-cal-date-perf a {
		font-size: 14px;
		padding-left: 4px;
		padding-right: 4px;
	}
}
body.farlo-page #farlo-cal .farlo-cal-body .farlo-cal-date .farlo-cal-date-perf a span {
	font-size: 12px;
	font-weight: 400;
	transition: color 0.3s ease-in-out;
}
body.farlo-page #farlo-cal .farlo-cal-pre-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 16px;
	position: relative;
	z-index: 1;
}
body.farlo-page #farlo-cal .farlo-cal-pre-header h3 {
	margin: 0;
}
body.farlo-page #farlo-cal .farlo-cal-pre-header button {
	background: transparent;
	border: 0;
	display: none;
}
body.farlo-page #farlo-cal .farlo-cal-main {
	flex: 1;
}
body.farlo-page #farlo-cal .perf {
	background: transparent;
	flex: 1;
	font-family: var(--global-body-font-family);
	position: relative;
	text-align: left;
	text-transform: none;
	transition: background 0.3s ease-in-out;
}
body.farlo-page #farlo-cal .perf__price {
	display: block;
}
body.farlo-page #farlo-cal .perf-sold-out {
	background: var(--global-very-light-grey);
	cursor: not-allowed;
	pointer-events: none;
	touch-action: none;
}
body.farlo-page #farlo-cal .perf:not(.perf-sold-out):hover {
	background: var(--global-very-light-blue);
	color: var(--global-primary-accent-colour) !important;
}
body.farlo-page #farlo-cal .perf:not(.perf-sold-out):hover span {
	color: var(--global-primary-accent-colour) !important;
}
body.farlo-page #farlo-cal .perf:after {
	border-top: 2px solid transparent;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
body.farlo-page #farlo-cal .perf-good:after {
	border-color: var(--availability-good);
}
body.farlo-page #farlo-cal .perf-limited:after {
	border-color: var(--availability-low);
}
body.farlo-page #farlo-cal .perf-low:after {
	border-color: var(--availability-last-few);
}
body.farlo-page #farlo-cal .perf-sold-out:after {
	border-color: var(--availability-none);
}
body.farlo-page .farlo-cal-header {
	align-items: flex-start;
	display: flex;
	gap: 8px;
	justify-content: flex-start;
	left: 0;
	margin-bottom: 24px;
	min-width: 220px;
	padding: 0;
	width: auto;
}
body.farlo-page .farlo-cal-header svg {
	fill: var(--global-secondary-accent-colour);
}
body.farlo-page .farlo-cal-header .h3 {
	color: var(--global-secondary-accent-colour);
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 0;
}
body.farlo-page .farlo-cal-header__label {
	margin: 0;
	min-width: 120px;
	text-align: center;
	transform: translateY(8px);
	width: -moz-max-content;
	width: max-content;
}
body.farlo-page .farlo-cal-header__label--is-trigger {
	cursor: pointer;
	min-width: 150px;
	padding-right: 8px;
	position: relative;
}
body.farlo-page .farlo-cal-header__label--is-trigger:after {
	content: "❯";
	display: inline-block;
	height: 8px;
	left: 16px;
	position: relative;
	top: 6px;
	transform: rotate(90deg);
	width: 8px;
}
body.farlo-page .farlo-cal-header__dropdown {
	align-items: flex-start;
	background: #353535;
	border-radius: 4px 4px 4px 4px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0;
	overflow: hidden;
	padding: 4px;
	position: absolute;
	transform: scaleY(0) translate(60px, 36px);
	transform-origin: center top;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	z-index: 2;
}
body.farlo-page .farlo-cal-header__dropdown button {
	background: transparent;
	color: white;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: normal;
	line-height: 1;
	margin: 0;
	padding-bottom: 6px;
	padding-left: 8px;
	padding-right: 8px;
	padding-top: 6px;
	text-transform: none;
	width: auto;
}
body.farlo-page .farlo-cal-header__dropdown--open {
	opacity: 1;
	transform: scaleY(1) translate(60px, 36px);
}
body.farlo-page .toggle-performances {
	background: transparent;
	border: 1px solid black;
	border-radius: 0;
	height: 36px;
	position: absolute;
	right: 0;
	transition: background 0.3s ease;
	width: 36px;
	z-index: 2;
}
body.farlo-page .toggle-performances:hover {
	background: rgba(0, 0, 0, 0.1);
}
body.farlo-page .toggle-performances.toggle-calendar {
	padding: 0 5px;
}
body.farlo-page .toggle-performances.toggle-calendar .farlo-ui-icons__icon-list {
	display: none;
}
body.farlo-page .toggle-performances.toggle-calendar + #farlo-cal {
	display: none;
}
body.farlo-page .toggle-performances.toggle-list {
	padding: 0 5px;
}
body.farlo-page .toggle-performances.toggle-list .farlo-ui-icons__icon-booking_dates {
	display: none;
}
body.farlo-page .toggle-performances.toggle-list + #farlo-cal + #performance-list {
	display: none;
}
body.farlo-page .toggle-performances .farlo-ui-icons__icon-container {
	height: 24px;
	width: 24px;
}
body.farlo-page .farlo-cal-btn {
	align-items: center;
	background: transparent;
	color: inherit;
	cursor: pointer;
	display: flex;
	fill: var(--global-secondary-accent-colour);
	font: inherit;
	height: 36px;
	justify-content: center;
	line-height: normal;
	min-width: 27px;
	outline: none;
	overflow: visible;
	text-align: center;
	transition: background 0.3s ease;
	width: 36px;
}
body.farlo-page .farlo-cal-btn:hover {
	background: rgba(0, 0, 0, 0.1);
}
body.farlo-page .farlo-cal-btn:focus {
	box-shadow: inset 0 0 1px var(--global-primary-accent-colour);
}
body.farlo-page button.farlo-cal-link-disabled svg {
	fill: rgba(0, 0, 0, 0.3);
}
body.farlo-page .performance-list {
	font-family: var(--global-button-font-family);
	text-transform: uppercase;
	width: 100%;
}
body.farlo-page .performance-list__ul, body.farlo-page .performance-list__li {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
body.farlo-page .performance-list__ul-shows-2 > .performance-list__links:after, body.farlo-page .performance-list__li-shows-2 > .performance-list__links:after {
	background: black;
	content: "";
	content: none;
	height: 1px;
	left: 0;
	left: 50%;
	max-width: 1200px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%, 0);
	width: 100%;
}
body.farlo-page .performance-list__li {
	display: flex;
	flex-direction: column;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list__li {
		flex-direction: row;
	}
}
body.farlo-page .performance-list__week {
	text-align: center;
}
body.farlo-page .performance-list__day {
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	display: flex;
	flex: 0 1 20%;
	justify-content: space-between;
	padding: 8px;
	text-align: left;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list__day {
		padding: 12px;
	}
}
body.farlo-page .performance-list__day-date {
	font-family: var(--global-body-font-family);
}
@media (min-width: 980px) {
	body.farlo-page .performance-list__day {
		border-bottom: 0;
		border-right: 1px solid rgb(0, 0, 0);
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	body.farlo-page .performance-list__day-dow {
		font-size: 2rem;
	}
	body.farlo-page .performance-list__day-date {
		font-size: 1.2rem;
	}
}
body.farlo-page .performance-list__links {
	display: grid;
	flex: 1 0 80%;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
}
body.farlo-page .performance-list__links a {
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-width: 0 1px 1px 0;
	display: block;
	display: flex;
	flex: 0 0 50%;
	flex: 0 0 33.333%;
	flex-direction: column;
	justify-content: center;
	padding: 8px 8px 12px 8px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s ease;
	width: 100%;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list__links a {
		padding: 12px 12px 16px 12px;
	}
}
body.farlo-page .performance-list__links a.perf-disabled * {
	opacity: 0.1;
}
body.farlo-page .performance-list__links a .performance-list__link-time {
	font-family: var(--global-body-font-family);
	font-size: 1.6rem;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list__links a .performance-list__link-time {
		font-size: 1.8rem;
	}
}
body.farlo-page .performance-list__links a.performance-list__link-noAvailability {
	cursor: default;
}
body.farlo-page .performance-list__links a.performance-list__link-noAvailability .performance-list__link-time {
	text-decoration: line-through;
}
body.farlo-page .performance-list__links a.performance-list__link-noAvailability:hover {
	background: transparent !important;
}
body.farlo-page .performance-list__links a:hover {
	background: rgba(0, 0, 0, 0.05);
	text-decoration: none;
}
body.farlo-page .performance-list__links a div:nth-child(2) {
	font-family: var(--global-button-font-family);
	font-size: 1.2rem;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list__links a div:nth-child(2) {
		font-size: 1.4rem;
	}
}
body.farlo-page .performance-list__empty {
	align-items: center;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	padding: 24px 12px;
	text-align: center;
	text-align: center;
}
body.farlo-page .performance-list__li {
	border: 1px solid rgb(0, 0, 0);
	border-width: 0 1px 1px;
}
body.farlo-page .performance-list__li:first-child {
	border-top-width: 1px;
}
body.farlo-page .performance-list .farlo-cal-btn {
	border: 1px solid black;
	border-radius: 0;
	transition: background 0.3s ease;
}
body.farlo-page .performance-list .farlo-cal-btn:hover {
	background: rgba(0, 0, 0, 0.1);
}
body.farlo-page .performance-list .farlo-cal-header {
	justify-content: space-between;
	left: 0;
	margin: 0;
	min-width: 220px;
	padding: 0;
	position: absolute;
	top: 56px;
	transform: none;
	width: 100%;
	z-index: 9;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list .farlo-cal-header {
		top: 0;
		width: 400px;
	}
}
body.farlo-page .performance-list h3 {
	font-size: 24px;
	margin: 0 0 80px;
	text-align: center;
	transform: translateY(63px);
	width: 100%;
	z-index: -1;
}
@media (min-width: 980px) {
	body.farlo-page .performance-list h3 {
		font-size: 30px;
		margin: 0 0 20px;
		transform: none;
		width: 400px;
	}
}
body.farlo-page .farlo-cal-filters {
	display: flex;
	gap: 15px;
	justify-content: center;
	position: absolute;
	right: 48px;
	white-space: nowrap;
	width: calc(100% - 46px);
	z-index: 3;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-cal-filters {
		width: auto;
	}
}
body.farlo-page .farlo-cal-filters button {
	background: transparent;
	border: 0;
	border: 1px solid black;
	color: black !important;
	flex: 1;
	height: 36px;
	padding: 0 10px;
	text-transform: uppercase;
	transition: background ease 0.3s;
}
body.farlo-page .farlo-cal-filters button:visited, body.farlo-page .farlo-cal-filters button:active, body.farlo-page .farlo-cal-filters button:focus, body.farlo-page .farlo-cal-filters button:target {
	color: black !important;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-cal-filters button {
		padding: 0 20px;
	}
}
body.farlo-page .farlo-cal-filters button.cal-filter-active, body.farlo-page .farlo-cal-filters button:hover {
	background: rgba(0, 0, 0, 0.1);
}
body.farlo-page .farlo-performance-prices {
	margin-bottom: 250px;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-performance-prices {
		margin-bottom: 50px;
	}
}
body.farlo-page .farlo-performance-prices .farlo-performance-price {
	background: #f5f5f9;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 10px;
	padding: 20px;
}
@media (min-width: 640px) {
	body.farlo-page .farlo-performance-prices .farlo-performance-price {
		flex-direction: row;
	}
}
body.farlo-page .farlo-performance-prices .farlo-performance-price:last-child {
	margin-bottom: 0;
}
@media (min-width: 640px) {
	body.farlo-page .farlo-performance-prices .farlo-performance-price {
		gap: 40px;
	}
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--price {
	margin: 10px 0;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--price-band {
	flex: auto;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--price-band h4 {
	margin: 0;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--input {
	text-align: center;
}
@media (min-width: 640px) {
	body.farlo-page .farlo-performance-prices .farlo-performance-price--input {
		flex: 0 0 200px;
	}
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--input .site-form-field__input-number {
	margin-top: 3px;
	width: 100%;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--input input {
	border-color: var(--primary-colour);
	text-align: center;
	width: 100%;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--concession {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--concession:last-child {
	margin-bottom: 0;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--concession span {
	font-size: 1.6rem;
	font-weight: 500;
	text-transform: uppercase;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--concession span:first-child {
	flex: 1;
	text-align: left;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--concession span:nth-child(2) {
	text-align: right;
}
body.farlo-page .farlo-performance-prices .farlo-performance-price--sold-out {
	color: var(--availability-none);
	display: inline-block;
	font-weight: 500;
	margin: 0 auto;
	text-transform: uppercase;
}
body.farlo-page .farlo-basket-items {
	width: 100%;
}
body.farlo-page .shopping-basket {
	background: #f5f5f9;
}
body.farlo-page .shopping-basket__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 20px;
	padding: 30px;
	position: relative;
}
@media (min-width: 640px) {
	body.farlo-page .shopping-basket__item {
		flex-direction: row;
		gap: 40px;
		padding: 40px;
	}
}
body.farlo-page .shopping-basket__item:last-child {
	border-bottom: 0;
}
body.farlo-page .shopping-basket__item-image {
	flex: 0 1 50%;
	max-width: 200px;
	width: 30%;
}
body.farlo-page .shopping-basket__item-image img {
	height: auto !important;
	max-width: 100%;
}
body.farlo-page .shopping-basket__item-content {
	flex: 1;
}
body.farlo-page .shopping-basket__item-content h4 {
	margin-bottom: 10px;
}
body.farlo-page .shopping-basket__item-remove {
	font-size: 2rem;
	font-weight: 700;
	position: absolute;
	right: 30px;
	top: 25px;
}
body.farlo-page .shopping-basket__item-remove:hover {
	color: var(--global-secondary-colour);
	text-decoration: none;
}
body.farlo-page .shopping-basket__item-dates {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
	padding-bottom: 10px;
}
body.farlo-page .shopping-basket__item .button {
	margin-top: 10px;
}
body.farlo-page .shopping-basket-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	margin-top: 30px;
}
body.farlo-page .shopping-basket-actions > a {
	flex: auto;
	justify-content: center;
	max-width: 240px;
}
body.farlo-page .related-merchandise,
body.farlo-page .basket-additions {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	flex-direction: column;
	gap: 20px;
	padding: 30px;
}
@media (min-width: 640px) {
	body.farlo-page .related-merchandise,
body.farlo-page .basket-additions {
		flex-direction: row;
		gap: 40px;
		padding: 40px;
	}
}
body.farlo-page .related-merchandise:last-child,
body.farlo-page .basket-additions:last-child {
	border-bottom: 0;
}
body.farlo-page .related-merchandise__item, body.farlo-page .related-merchandise__upsell,
body.farlo-page .basket-additions__item,
body.farlo-page .basket-additions__upsell {
	padding: 10px 0;
}
body.farlo-page .related-merchandise__item h5, body.farlo-page .related-merchandise__upsell h5,
body.farlo-page .basket-additions__item h5,
body.farlo-page .basket-additions__upsell h5 {
	margin-bottom: 5px;
}
body.farlo-page .related-merchandise__item-variations, body.farlo-page .related-merchandise__upsell-variations,
body.farlo-page .basket-additions__item-variations,
body.farlo-page .basket-additions__upsell-variations {
	padding-left: 0;
}
body.farlo-page .related-merchandise__item-variations li, body.farlo-page .related-merchandise__upsell-variations li,
body.farlo-page .basket-additions__item-variations li,
body.farlo-page .basket-additions__upsell-variations li {
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0;
}
body.farlo-page .related-merchandise__item-variations li:last-child, body.farlo-page .related-merchandise__upsell-variations li:last-child,
body.farlo-page .basket-additions__item-variations li:last-child,
body.farlo-page .basket-additions__upsell-variations li:last-child {
	border-bottom: 0;
}
body.farlo-page .related-merchandise__item-name[farlo-ui], body.farlo-page .related-merchandise__upsell-name[farlo-ui],
body.farlo-page .basket-additions__item-name[farlo-ui],
body.farlo-page .basket-additions__upsell-name[farlo-ui] {
	cursor: pointer;
}
body.farlo-page .related-merchandise__item-price, body.farlo-page .related-merchandise__upsell-price,
body.farlo-page .basket-additions__item-price,
body.farlo-page .basket-additions__upsell-price {
	margin-left: auto;
	margin-right: 10px;
}
body.farlo-page .related-merchandise__item-input, body.farlo-page .related-merchandise__upsell-input,
body.farlo-page .basket-additions__item-input,
body.farlo-page .basket-additions__upsell-input {
	flex: 1 0 100%;
	margin-top: 4px;
	order: 5;
}
@media (min-width: 640px) {
	body.farlo-page .related-merchandise__item-input, body.farlo-page .related-merchandise__upsell-input,
body.farlo-page .basket-additions__item-input,
body.farlo-page .basket-additions__upsell-input {
		flex: unset;
		margin-top: unset;
		order: unset;
	}
}
body.farlo-page .related-merchandise__item-input input, body.farlo-page .related-merchandise__upsell-input input,
body.farlo-page .basket-additions__item-input input,
body.farlo-page .basket-additions__upsell-input input {
	border: 1px solid var(--primary-colour-accent);
	border-radius: 30px;
	text-align: center;
	width: 100%;
}
@media (min-width: 640px) {
	body.farlo-page .related-merchandise__item-input input, body.farlo-page .related-merchandise__upsell-input input,
body.farlo-page .basket-additions__item-input input,
body.farlo-page .basket-additions__upsell-input input {
		width: 90px;
	}
}
body.farlo-page .related-merchandise__item-description, body.farlo-page .related-merchandise__upsell-description,
body.farlo-page .basket-additions__item-description,
body.farlo-page .basket-additions__upsell-description {
	flex: 1 0 100%;
	margin-top: 5px;
}
body.farlo-page .related-merchandise__item-more, body.farlo-page .related-merchandise__upsell-more,
body.farlo-page .basket-additions__item-more,
body.farlo-page .basket-additions__upsell-more {
	display: inline-block;
	height: 10px;
	justify-content: center;
	left: 4px;
	position: relative;
	top: -2px;
	transform: rotate(-90deg);
	width: 10px;
}
body.farlo-page .related-merchandise__item-more:before, body.farlo-page .related-merchandise__item-more:after, body.farlo-page .related-merchandise__upsell-more:before, body.farlo-page .related-merchandise__upsell-more:after,
body.farlo-page .basket-additions__item-more:before,
body.farlo-page .basket-additions__item-more:after,
body.farlo-page .basket-additions__upsell-more:before,
body.farlo-page .basket-additions__upsell-more:after {
	background: var(--primary-colour-accent);
	content: "";
	height: 1px;
	position: absolute;
	transform: rotate(45deg);
	transform-origin: left center;
	width: 6px;
}
body.farlo-page .related-merchandise__item-more:hover:before, body.farlo-page .related-merchandise__item-more:hover:after, body.farlo-page .related-merchandise__upsell-more:hover:before, body.farlo-page .related-merchandise__upsell-more:hover:after,
body.farlo-page .basket-additions__item-more:hover:before,
body.farlo-page .basket-additions__item-more:hover:after,
body.farlo-page .basket-additions__upsell-more:hover:before,
body.farlo-page .basket-additions__upsell-more:hover:after {
	background: var(--global-secondary-colour);
}
body.farlo-page .related-merchandise__item-more:after, body.farlo-page .related-merchandise__upsell-more:after,
body.farlo-page .basket-additions__item-more:after,
body.farlo-page .basket-additions__upsell-more:after {
	transform: rotate(-45deg);
}
body.farlo-page .shopping-basket-mini h3 {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--global-primary-colour);
	display: flex;
	margin-bottom: 20px;
	margin-top: 0;
	padding-bottom: 20px;
}
body.farlo-page .shopping-basket-mini h3 span {
	font-family: Arial;
	font-size: 3rem;
	font-weight: 700;
	margin-left: auto;
}
body.farlo-page .shopping-basket-mini__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	padding-bottom: 20px;
}
body.farlo-page .shopping-basket-mini__item h4 {
	color: var(--global-primary-colour);
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	text-transform: none;
}
body.farlo-page .shopping-basket-mini__item-content {
	margin-top: 10px;
	padding-left: 30px;
}
body.farlo-page .farlo-seating-plan.container {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}
body.farlo-page .farlo-seating-plan.container h1.page-title {
	display: none;
}
body.farlo-page .farlo-seating-plan.container h1.page-title + h3 {
	display: none;
}
body.farlo-page .farlo-seating-plan.container .farlo-performance-prices__body {
	position: relative;
}
body.farlo-page .farlo-seating-plan.container .farlo-content {
	bottom: 0;
	gap: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: var(--header-height);
}
body.farlo-page .farlo-seating-plan.container .farlo-content .farlo-body {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	height: 100%;
	margin-top: 38px;
	max-height: calc(var(--vh, 1vh) * 100 - var(--header-height) - var(--pullup-height) - 38px);
	max-width: unset;
	width: 100vw;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-seating-plan.container .farlo-content .farlo-body {
		height: 100%;
		max-width: calc(100% - 320px);
	}
}
body.farlo-page .farlo-seating-plan.container .farlo-content .farlo-sidebar {
	bottom: 0;
	transition: bottom 0.3s ease-in-out;
}
body.farlo-page .farlo-seating-plan.container .farlo-content .farlo-sidebar:not(.farlo-sidebar-active) {
	bottom: -100px;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-seating-plan.container .farlo-content .farlo-sidebar {
		height: 100%;
	}
}
body.farlo-page .farlo-tooltip {
	align-items: center;
	background: var(--primary-colour);
	border-radius: 4px;
	color: white;
	display: flex;
	flex-direction: column;
	min-width: 150px;
	padding: 10px 20px;
	transform: translate(-50%, 0);
}
body.farlo-page .farlo-tooltip .tt-price {
	font-size: 2.2rem;
	font-weight: 600;
}
body.farlo-page .farlo-tooltip .tt-area {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}
body.farlo-page .farlo-tooltip .tt-title {
	font-weight: 500;
}
body.farlo-page #farlo-canvas-container {
	height: 100vh;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-height: calc(100vh - 74px);
	max-width: 100vw;
	position: relative;
	width: 100vw;
}
@media screen and (min-width: 980px) {
	body.farlo-page #farlo-canvas-container {
		max-width: calc(100vw - 320px);
	}
}
body.farlo-page #pricebands {
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.3);
	font-size: 1rem;
	left: 0;
	max-width: 100%;
	overflow-x: auto;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9;
}
body.farlo-page #pricebands ul {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin: 0;
	padding: 10px 20px;
}
body.farlo-page #pricebands .priceband {
	align-items: center;
	display: flex;
	gap: 5px;
}
body.farlo-page #pricebands .priceband__colour {
	border-radius: 10px;
	height: 20px;
	width: 10px;
}
body.farlo-page #pricebands .priceband__price {
	font-weight: 500;
}
body.farlo-page #pricebands .priceband__price span {
	white-space: nowrap;
}
body.farlo-page #view-seating-plan {
	position: fixed;
	right: 10px;
	top: 160px;
	z-index: 999;
}
@media (min-width: 980px) {
	body.farlo-page #view-seating-plan {
		bottom: 30px;
		right: 30px;
		top: unset;
	}
}
body.farlo-page #view-seating-plan .button {
	font-size: 10px;
	padding: 5px 10px;
}
@media (min-width: 980px) {
	body.farlo-page #view-seating-plan .button {
		font-size: 1.8rem;
		padding: 10px 24px;
	}
}
body.farlo-page .farlo-ui-lightbox--active.seating-plan-image .farlo-ui-lightbox__inner-content {
	left: unset;
	margin-top: 0;
	overflow: hidden;
	padding: 0;
	top: unset;
	transform: scale(1);
}
body.farlo-page .error-list {
	background: #f2c4c4;
	color: #651111;
	padding: 20px 30px 20px 50px;
}
body.farlo-page .error-list li:first-child:last-child {
	list-style: none;
	margin-left: -20px;
}
body.farlo-page .page-content-navigation {
	background: white;
	border-bottom: 1px solid var(--global-light-grey);
	position: sticky;
	top: 0;
	z-index: 3;
}
body.farlo-page .page-content-navigation > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (min-width: 980px) {
	body.farlo-page .page-content-navigation > .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
body.farlo-page .page-content-navigation-menu {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	padding: 0;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
body.farlo-page .page-content-navigation-menu::-webkit-scrollbar {
	display: none;
}
body.farlo-page .page-content-navigation-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}
body.farlo-page .page-content-navigation-menu li a {
	color: var(--global-primary-text-colour);
	display: block;
	font-weight: normal;
	padding: 12px;
	white-space: nowrap;
}
body.farlo-page .page-content-navigation-menu li a:active, body.farlo-page .page-content-navigation-menu li a.page-content-navigation--current {
	border-bottom: 2px solid var(--global-secondary-accent-colour);
	color: var(--global-primary-accent-colour);
}
body.farlo-page .page-content-navigation-menu li.active a {
	border-bottom: 2px solid var(--global-secondary-accent-colour);
}
body.farlo-page .media-navigation-strip {
	background: white;
	border-bottom: 1px solid var(--global-light-grey);
	display: block;
	padding-bottom: 12px;
	padding-top: 12px;
	position: sticky;
	top: 0;
	z-index: 3;
}
@media (min-width: 980px) {
	body.farlo-page .media-navigation-strip {
		display: none;
	}
}
body.farlo-page .media-navigation-strip__content {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
}
@media (min-width: 640px) {
	body.farlo-page .media-navigation-strip__content {
		flex-wrap: nowrap;
	}
}
body.farlo-page .media-navigation-strip__jump-button {
	flex-shrink: 0;
}
body.farlo-page .media-navigation-strip__media-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
@media (min-width: 640px) {
	body.farlo-page .media-navigation-strip__media-links {
		flex-wrap: nowrap;
	}
}
body.farlo-page .has-media-navigation .page-content-navigation {
	display: none;
}
@media (min-width: 980px) {
	body.farlo-page .has-media-navigation .page-content-navigation {
		display: block;
	}
}
body.farlo-page .farlo-ui-lightbox--navigation .farlo-ui-lightbox__content {
	max-width: 600px;
	width: 100%;
}
body.farlo-page .farlo-ui-lightbox--navigation .navigation-lightbox__menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
body.farlo-page .farlo-ui-lightbox--navigation .navigation-lightbox__menu-item a {
	background: var(--global-very-light-grey);
	border-radius: 4px 4px 4px 4px;
	color: var(--global-primary-text-colour);
	display: block;
	font-weight: 500;
	padding: 12px;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
body.farlo-page .farlo-ui-lightbox--navigation .navigation-lightbox__menu-item a:hover {
	background: var(--global-primary-accent-colour);
	color: white;
}
body.farlo-page .farlo-ui-lightbox--navigation .navigation-lightbox__menu-item a:active {
	background: var(--global-secondary-accent-colour);
}
body.farlo-page .site-collapsible-section {
	border-bottom: 1px solid var(--global-light-grey);
	padding-bottom: 8px;
	padding-top: 8px;
}
body.farlo-page .site-collapsible-section__header {
	background: transparent;
	border: 0;
	color: var(--global-primary-text-colour);
	cursor: pointer;
	max-width: none;
	padding: 0;
	padding-bottom: 8px;
	padding-top: 8px;
	position: relative;
	text-align: left;
	width: 100%;
}
body.farlo-page .site-collapsible-section__header h4 {
	letter-spacing: normal;
	margin: 0;
	padding-right: 32px;
	text-transform: none;
	white-space: normal;
}
body.farlo-page .site-collapsible-section__header:after {
	color: var(--global-secondary-accent-colour);
	content: "❯";
	font-size: 16px;
	height: 16px;
	line-height: 16px;
	position: absolute;
	right: 8px;
	text-align: center;
	top: 16px;
	transform: rotate(90deg);
	transition: transform 0.3s ease-in-out;
	width: 16px;
}
body.farlo-page .site-collapsible-section__header:first-child:last-child {
	cursor: default;
}
body.farlo-page .site-collapsible-section__header:first-child:last-child:after {
	content: none;
}
body.farlo-page .site-collapsible-section__open:after {
	transform: rotate(-90deg);
}
body.farlo-page .site-collapsible-section__content {
	height: calc(var(--section-height, 0) * 1px);
	overflow: hidden;
	transition: height 0.3s ease-in-out;
}
body.farlo-page .site-collapsible-section__content > *:first-child {
	padding-top: 8px;
}
body.farlo-page .site-collapsible-section__content > *:last-child {
	padding-bottom: 8px;
}
body.farlo-page .site-collapsible-section__content p:last-child {
	margin-bottom: 0;
}
body.farlo-page .show-content-container-section {
	margin-bottom: 48px;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-section {
		margin-bottom: 80px;
	}
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-section .section-title {
		display: flex;
		flex: 1 0 100%;
	}
}
body.farlo-page .show-content-container-section .section-title em {
	padding-right: 4px;
}
body.farlo-page .show-content-container-section .section-title:after {
	height: 4px;
}
body.farlo-page .show-content-container-section h4.section-title {
	font-size: var(--global-heading-h5);
}
body.farlo-page .show-content-container-section[data-scrolltab=gallery] img {
	width: 100%;
}
body.farlo-page .farlo-breadcrumbs {
	display: flex;
	height: 24px;
	margin-bottom: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	scroll-snap-align: end;
	scroll-snap-stop: always;
	scroll-snap-type: x mandatory;
	z-index: 2;
}
body.farlo-page .farlo-breadcrumbs:after {
	content: "";
	display: block;
	height: 16px;
	width: 32px;
}
body.farlo-page .farlo-breadcrumbs__list {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
body.farlo-page .farlo-breadcrumbs__item {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 8px;
	position: relative;
	white-space: nowrap;
}
body.farlo-page .farlo-breadcrumbs__item:before {
	content: "/";
	left: 0;
	left: -2px;
	position: absolute;
	top: 1px;
}
body.farlo-page .farlo-breadcrumbs__item:first-child {
	padding-left: 0;
}
body.farlo-page .farlo-breadcrumbs__item:first-child:before {
	content: none;
}
body.farlo-page .farlo-breadcrumbs__item a {
	color: var(--global-secondary-text-colour);
	font-weight: normal;
	text-decoration: none;
	text-decoration: underline;
	transition: color 0.3s ease-in-out;
}
body.farlo-page .farlo-breadcrumbs__item a:hover {
	color: var(--global-primary-text-colour);
	text-decoration: none;
}
body.farlo-page .toast-item {
	background: rgba(0, 0, 0, 0.68);
	border-radius: 10px;
	color: white;
	left: 50%;
	max-width: 500px;
	padding: 13px 20px 15px;
	position: fixed;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 999999;
}
body.farlo-page .toast-item.toast-takeover:before {
	background: black;
	bottom: -999em;
	content: "";
	left: -999em;
	opacity: 0.4;
	position: absolute;
	right: -999em;
	top: -999em;
	z-index: -1;
}
body.farlo-page .lity {
	background: rgba(0, 0, 0, 0.9);
	bottom: 0;
	left: 0;
	opacity: 0;
	outline: none !important;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}
body.farlo-page .lity.lity-opened {
	opacity: 1;
}
body.farlo-page .lity * {
	box-sizing: border-box;
}
body.farlo-page .lity .lity-wrap {
	bottom: 0;
	left: 0;
	outline: none !important;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
}
body.farlo-page .lity .lity-wrap:before {
	content: "";
	display: inline-block;
	height: 100%;
	margin-right: -0.25em;
	vertical-align: middle;
}
body.farlo-page .lity .lity-loader {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-top: -0.8em;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	transition: opacity 0.3s ease;
	width: 100%;
}
body.farlo-page .lity .lity-loader.lity-loading {
	opacity: 1;
}
body.farlo-page .lity .lity-container {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	outline: none !important;
	position: relative;
	text-align: left;
	vertical-align: middle;
	white-space: normal;
}
body.farlo-page .lity .lity-content {
	transform: scale(1);
	transition: transform 0.3s ease;
	width: 100%;
}
body.farlo-page .lity .lity-content.lity-loading, body.farlo-page .lity .lity-content.lity-closed {
	transform: scale(0.8);
}
body.farlo-page .lity .lity-content:after {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}
body.farlo-page .lity .lity-close {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background: none;
	border: 0;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-family: Arial, Baskerville, monospace;
	font-size: 35px;
	font-style: normal;
	height: 35px;
	line-height: 35px;
	outline: none;
	padding: 0;
	position: fixed;
	right: 0;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	top: 0;
	width: 35px;
}
body.farlo-page .lity .lity-close::-moz-focus-inner {
	border: 0;
	padding: 0;
}
body.farlo-page .lity .lity-close:hover, body.farlo-page .lity .lity-close:focus, body.farlo-page .lity .lity-close:active, body.farlo-page .lity .lity-close:visited {
	background: none;
	border: 0;
	box-shadow: none;
	color: #fff;
	font-family: Arial, Baskerville, monospace;
	font-size: 35px;
	font-style: normal;
	line-height: 35px;
	outline: none;
	padding: 0;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
body.farlo-page .lity .lity-close:active {
	top: 1px;
}
body.farlo-page .lity,
body.farlo-page .lity-wrap,
body.farlo-page .lity-loader,
body.farlo-page .lity-container,
body.farlo-page .lity-content,
body.farlo-page .lity-close,
body.farlo-page .lity-close:hover,
body.farlo-page .lity-close:focus,
body.farlo-page .lity-close:active,
body.farlo-page .lity-close:visited {
	z-index: 9990;
}
body.farlo-page .lity-wrap:before {
	content: "";
	display: inline-block;
	height: 100%;
	margin-right: -0.25em;
	vertical-align: middle;
}
body.farlo-page .lity-wrap:after {
	animation: spin 2s linear infinite;
	background: url(../../../public/src/assets/media/images/circle-notch-light.svg);
	background-repeat: no-repeat;
	background-size: 36px;
	content: "";
	height: 36px;
	left: 50%;
	margin-left: -18px;
	margin-top: -18px;
	position: fixed;
	top: 50%;
	width: 36px;
}
body.farlo-page .lity-loader,
body.farlo-page .lity-closed .lity-content {
	opacity: 0;
}
body.farlo-page .lity-content:after {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}
body.farlo-page .lity-close:active {
	top: 1px;
}
body.farlo-page .lity-iframe .lity-container, body.farlo-page .lity-youtube .lity-container, body.farlo-page .lity-vimeo .lity-container, body.farlo-page .lity-facebookvideo .lity-container, body.farlo-page .lity-googlemaps .lity-container {
	max-width: 964px;
	width: 100%;
}
body.farlo-page .lity-iframe-container {
	height: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding-top: 56.25%;
	pointer-events: auto;
	transform: translateZ(0);
	width: 100%;
}
body.farlo-page .lity-iframe-container iframe {
	background: #000;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
body.farlo-page .lity-hide {
	display: none;
}
body.farlo-page .lity-container {
	padding: 0 30px;
}
body.farlo-page .lity-content {
	background: #fff;
	border-radius: 0.2rem;
	max-width: 60rem;
	padding: 0;
}
body.farlo-page .lity-content h3 {
	line-height: 1.1;
	margin: 0;
	padding: 3rem 3rem 2rem;
}
body.farlo-page .lity-content .modal-body {
	padding: 1rem 3rem 3rem;
}
body.farlo-page .lity-content .modal-actions {
	border-top: 0.1rem solid #eae9e9;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 2rem 3rem;
}
body.farlo-page .lity-content .modal-actions a {
	width: 100%;
}
@media (min-width: 980px) {
	body.farlo-page .lity-content .modal-actions {
		flex-direction: row;
		width: auto;
	}
}
body.farlo-page .lity-content .modal-actions a {
	display: block;
	white-space: nowrap;
}
body.farlo-page .account-page-content .customer-details,
body.farlo-page .account-page-content .password-fields {
	margin-bottom: 40px;
}
body.farlo-page .account-page-content .address-details {
	margin-bottom: 30px;
}
body.farlo-page .account-page-content .address-details + button {
	margin-left: auto;
	margin-right: auto;
}
body.farlo-page .checkout-sign-in h3 + p {
	margin-bottom: 20px;
}
body.farlo-page .checkout-main .customer-details,
body.farlo-page .checkout-main .address-details,
body.farlo-page .checkout-main .payment-method,
body.farlo-page .checkout-main .password-fields,
body.farlo-page .checkout-main .delivery-method,
body.farlo-page .checkout-main .promo-code-details,
body.farlo-page .checkout-main .suggested-donations {
	margin-bottom: 40px;
}
body.farlo-page #order-details {
	flex-wrap: unset;
	gap: 40px;
}
body.farlo-page .order-details__header, body.farlo-page .order-details__footer {
	background-color: var(--global-tertiary-colour);
	padding: 30px;
	text-align: center;
}
body.farlo-page .order-details__body {
	background: white;
	margin: 0 auto;
	max-width: var(--global-content-width);
	width: 100%;
}
body.farlo-page .order-details__body h3 {
	padding: 30px;
}
body.farlo-page .order-details__main h3 {
	border-bottom: 1px solid var(--global-tertiary-colour);
}
body.farlo-page .order-details__main .shopping-basket__item {
	border-color: var(--global-tertiary-colour);
}
body.farlo-page .order-details__main .shopping-basket__item-dates {
	border-color: var(--global-tertiary-colour);
}
body.farlo-page .order-details__top {
	border-bottom: 1px solid var(--global-tertiary-colour);
	padding: 30px;
}
body.farlo-page .order-details__top p {
	margin: 0;
}
body.farlo-page .order-details__totals {
	border-top: 1px solid var(--global-tertiary-colour);
	padding: 30px;
}
body.farlo-page .order-details__totals h3 {
	margin: 5px;
	padding: 0;
}
body.farlo-page .checkout-main {
	width: 100%;
}
@media (min-width: 980px) {
	body.farlo-page .checkout-main {
		width: unset;
	}
}
body.farlo-page .navigation.pagination {
	margin: 40px 0;
	text-align: center;
}
body.farlo-page .navigation.pagination .nav-links {
	display: flex;
	gap: 10px;
	justify-content: center;
}
body.farlo-page .navigation.pagination .nav-links > span,
body.farlo-page .navigation.pagination .nav-links a {
	background: #dadae0;
	border-radius: 16px;
	display: block;
	height: 32px;
	line-height: 32px;
	text-align: center;
	text-decoration: none;
	width: 32px;
}
body.farlo-page .page-footer-bar {
	background: white;
	border-top: 1px solid var(--global-light-grey);
	bottom: 0;
	display: none;
	position: sticky;
	transition: transform 0.3s ease-in-out;
	z-index: 3;
}
body.farlo-page .page-footer-bar .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 12px;
	padding-top: 12px;
}
body.farlo-page .page-footer-bar__left {
	margin-right: auto;
}
body.farlo-page .page-footer-bar__left h3 {
	margin: 0;
	text-transform: uppercase;
}
body.farlo-page .page-footer-bar__left h3 span {
	color: var(--global-secondary-text-colour);
	font: var(--global-header-h5);
}
body.farlo-page .page-footer-bar__right {
	align-items: center;
	display: flex;
	font-weight: 600;
	gap: 16px;
	text-transform: uppercase;
}
body.farlo-page .page-footer-bar__right .call-to-action .call-to-action-button {
	font-size: 16px;
	padding-bottom: 12px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 12px;
}
@media (min-width: 980px) {
	body.farlo-page .page-footer-bar {
		display: flex;
		transform: translateY(120%);
	}
}
@media (min-width: 980px) {
	body.farlo-page.show-footer-bar .page-footer-bar {
		transform: translateY(0) !important;
	}
}
body.farlo-page .faq-section__toggle {
	margin-top: 16px;
}
body.farlo-page .subway-line {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 12px;
	font-weight: bold;
	height: 24px;
	justify-content: center;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	width: 24px;
}
body.farlo-page .subway-line-n, body.farlo-page .subway-line-q, body.farlo-page .subway-line-r, body.farlo-page .subway-line-w {
	background-color: #FCCC0A;
	color: #000;
}
body.farlo-page .subway-line-1, body.farlo-page .subway-line-2, body.farlo-page .subway-line-3 {
	background-color: #df0000;
	color: #fff;
}
body.farlo-page .subway-line-7 {
	background-color: #5a045a;
	color: #fff;
}
body.farlo-page .subway-line-a, body.farlo-page .subway-line-c, body.farlo-page .subway-line-e {
	background-color: #0a5786;
	color: #fff;
}
body.farlo-page .subway-line-4, body.farlo-page .subway-line-5, body.farlo-page .subway-line-6 {
	background-color: #008700;
	color: #fff;
}
body.farlo-page .subway-line-b, body.farlo-page .subway-line-d, body.farlo-page .subway-line-f, body.farlo-page .subway-line-m {
	background-color: #de3700;
	color: #fff;
}
body.farlo-page .subway-line-g {
	background-color: #4f8403;
	color: #fff;
}
body.farlo-page .subway-line-l, body.farlo-page .subway-line-s {
	background-color: #666;
	color: #fff;
}
body.farlo-page .subway-line-j, body.farlo-page .subway-line-z {
	background-color: #573208;
	color: #fff;
}
body.farlo-page .farlo-page-booking_page .site {
	overflow: initial;
}
body.farlo-page .farlo-page-booking_page.farlo-calendar-page .site {
	overflow: hidden;
}
body.farlo-page .farlo-page-booking_page h1.page-title {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}
body.farlo-page .farlo-page-booking_page h1.page-title span {
	display: block;
	text-align: center;
}
body.farlo-page .farlo-page-booking_page .page-sub-title {
	align-items: center;
	display: flex;
	flex-direction: column-reverse;
	gap: 10px;
	margin-bottom: 20px;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-page-booking_page .page-sub-title {
		flex-direction: row;
		justify-content: space-between;
	}
}
body.farlo-page .farlo-page-booking_page .page-sub-title h3 {
	margin-bottom: 0;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-page-booking_page .page-sub-title h3 {
		margin-right: 20px;
	}
}
body.farlo-page .farlo-body {
	flex: auto;
	width: 100%;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-body {
		max-width: calc(100% - 320px);
	}
}
body.farlo-page .farlo-body.checkout-main {
	margin-bottom: 40px;
}
body.farlo-page .farlo-content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
}
body.farlo-page .farlo-content.farlo-basket {
	gap: 0;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-content.farlo-basket {
		gap: 40px;
	}
}
@media (min-width: 980px) {
	body.farlo-page .farlo-content {
		flex-direction: row;
	}
}
body.farlo-page .farlo-sidebar {
	background: var(--global-tertiary-colour);
	bottom: 0;
	color: var(--global-primary-colour);
	flex: 1;
	padding: 30px;
	position: static;
	right: 0;
	text-align: center;
	width: 100%;
	width: -webkit-fill-available;
}
body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar {
	background: transparent;
	padding: 0;
}
body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar > .farlo-sidebar__inner {
	background: #f5f5f9;
	padding: 10px 30px;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar > .farlo-sidebar__inner {
		padding: 30px;
	}
}
body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar .button--image {
	cursor: pointer;
	order: -1;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar .button--image {
		margin-top: 30px;
		order: unset;
	}
}
@media screen and (max-width: 979px) {
	body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar .button--image {
		border: 1px solid white;
		border-radius: 4px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		height: 70px;
		-o-object-fit: contain;
		   object-fit: contain;
		overflow: hidden;
		position: absolute;
		right: 10px;
		top: -80px;
		width: 110px;
		z-index: 2;
	}
	body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar .button--image span {
		font-size: 1.1rem;
		font-weight: 700;
		left: 0;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
}
.account-page-content body.farlo-page .farlo-sidebar {
	max-width: 320px;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar {
		min-width: 320px;
		position: sticky;
		top: 30px;
	}
	.farlo-performance-prices-seating-plan body.farlo-page .farlo-sidebar {
		background: white;
		border-left: 1px solid #dadae0;
		margin-top: 90px;
		max-width: 200px;
		z-index: 9;
	}
}
body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar {
	position: fixed;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar {
		top: 30px;
	}
	.farlo-performance-prices-table body.farlo-page .farlo-sidebar.farlo-performance-prices__sidebar {
		position: sticky;
	}
}
body.farlo-page .farlo-sidebar.farlo-checkout__sidebar {
	order: -1;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar.farlo-checkout__sidebar {
		order: unset;
	}
}
@media (min-width: 1024px) {
	body.farlo-page .farlo-sidebar {
		flex: 1 0 36%;
		max-width: 500px;
	}
}
body.farlo-page .farlo-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
body.farlo-page .farlo-sidebar ul li {
	border-top: 1px solid #dbdde1;
	list-style: none;
	margin: 0;
	padding: 10px 0;
}
body.farlo-page .farlo-sidebar ul li.current-page-item {
	font-weight: 500;
}
body.farlo-page .farlo-sidebar .selected-seats__toggle {
	color: var(--global-primary-colour);
	font-family: system-ui;
	font-size: 30px;
	font-weight: 700;
	height: 20px;
	line-height: 28px;
	margin-bottom: -15px;
	overflow: hidden;
	padding: 0;
}
body.farlo-page .farlo-sidebar #basket-merchandise ul,
body.farlo-page .farlo-sidebar #selected-seats ul,
body.farlo-page .farlo-sidebar #basket-addons ul {
	align-items: flex-start;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	list-style: none;
	margin-bottom: 10px;
	max-height: 40vh;
	overflow: auto;
	padding-bottom: 10px;
	padding-top: 10px;
}
body.farlo-page .farlo-sidebar #basket-merchandise ul:empty,
body.farlo-page .farlo-sidebar #selected-seats ul:empty,
body.farlo-page .farlo-sidebar #basket-addons ul:empty {
	display: none;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar #basket-merchandise ul,
body.farlo-page .farlo-sidebar #selected-seats ul,
body.farlo-page .farlo-sidebar #basket-addons ul {
		padding-top: 0;
	}
}
body.farlo-page .farlo-sidebar #basket-merchandise ul li,
body.farlo-page .farlo-sidebar #selected-seats ul li,
body.farlo-page .farlo-sidebar #basket-addons ul li {
	border: 0;
	color: var(--global-primary-colour);
	font-weight: 500;
	list-style: none;
	padding-bottom: 5px;
	padding-left: 30px;
	padding-top: 5px;
	position: relative;
	text-align: left;
}
body.farlo-page .farlo-sidebar #basket-merchandise ul li .remove-seat,
body.farlo-page .farlo-sidebar #selected-seats ul li .remove-seat,
body.farlo-page .farlo-sidebar #basket-addons ul li .remove-seat {
	cursor: pointer;
	height: 23px;
	left: 0;
	position: absolute;
	top: 5px;
	width: 21px;
}
body.farlo-page .farlo-sidebar #basket-merchandise ul li:before,
body.farlo-page .farlo-sidebar #selected-seats ul li:before,
body.farlo-page .farlo-sidebar #basket-addons ul li:before {
	background: var(--global-primary-colour);
	border-radius: 12px;
	color: white;
	content: "×";
	font-size: 28px;
	font-weight: 700;
	height: 24px;
	left: 0;
	line-height: 24px;
	position: absolute;
	text-align: center;
	top: 7px;
	width: 24px;
}
body.farlo-page .farlo-sidebar #selected-seats-toggle {
	left: -9999em;
	position: absolute;
}
body.farlo-page .farlo-sidebar #selected-seats-toggle + label:before, body.farlo-page .farlo-sidebar #selected-seats-toggle + label:after {
	background: var(--global-primary-colour);
	border-color: var(--global-primary-colour);
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	top: 4px;
	transform: rotate(45deg);
	width: 15px;
}
body.farlo-page .farlo-sidebar #selected-seats-toggle + label:before {
	margin-left: -8px;
	transform: rotate(-45deg);
}
body.farlo-page .farlo-sidebar #selected-seats-toggle:checked + label {
	transform: rotate(180deg);
}
body.farlo-page .farlo-sidebar #selected-seats-toggle:checked + label:before, body.farlo-page .farlo-sidebar #selected-seats-toggle:checked + label:after {
	top: 12px;
}
body.farlo-page .farlo-sidebar #selected-seats-toggle:checked + label + #selected-seats {
	display: block;
}
body.farlo-page .farlo-sidebar .selected-seats-summary {
	color: var(--global-primary-colour);
	margin-bottom: 15px;
	text-align: left;
}
@media (min-width: 980px) {
	body.farlo-page .farlo-sidebar .selected-seats-summary {
		margin-bottom: 20px;
	}
}
body.farlo-page .farlo-sidebar .selected-seats-summary__total {
	font-size: 3rem;
	font-weight: 600;
}
body.farlo-page .farlo-sidebar .button {
	justify-content: center;
	text-align: center;
	width: 100%;
}
body.farlo-page .farlo-sidebar.farlo-checkout__sidebar .selected-seats-summary, body.farlo-page .farlo-sidebar.farlo-basket__sidebar .selected-seats-summary {
	margin-bottom: 0;
}
body.farlo-page .farlo-sidebar .promo-tag {
	background: var(--global-secondary-colour);
	border-radius: 4px 0 0 4px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1;
	margin-top: -16px;
	padding: 8px 10px;
	position: absolute;
	right: 0;
	text-transform: uppercase;
}
body.farlo-page .suggested-donations__item-description.truncated {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}
body.farlo-page .suggested-donations__item-description + .button {
	margin-top: 10px;
}
body.farlo-page .suggested-donations__item-description-button {
	left: -9999em;
	position: absolute;
}
body.farlo-page .suggested-donations__item-description-button:checked + .truncated {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}
body.farlo-page .suggested-donations__item-description-button:checked + .truncated + .button {
	display: none;
}
body.farlo-page .suggested-donations__item-options {
	display: grid;
	gap: 10px 10px;
	grid-auto-flow: row;
	grid-template-areas: "donation-roundup donation-roundup" ". ." ". .";
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	grid-template-rows: auto;
	list-style: none;
	margin: 0;
	margin-top: 30px;
	padding: 0;
}
@media (min-width: 980px) {
	body.farlo-page .suggested-donations__item-options:not(.no-roundup) {
		grid-template-areas: "donation-roundup . ." "donation-roundup . .";
		grid-template-columns: 2fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
}
body.farlo-page .suggested-donations__item-options li label {
	align-items: center;
	border: 1px solid var(--global-primary-colour);
	border-radius: 3px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	text-align: center;
	transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
body.farlo-page .suggested-donations__item-options li label .donation-intro {
	font-size: smaller;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
body.farlo-page .suggested-donations__item-options li label .donation-value {
	font-size: 2.4rem;
	font-weight: 700;
}
body.farlo-page .suggested-donations__item-options li label:hover {
	border-color: var(--global-secondary-colour);
	color: var(--global-secondary-colour);
}
body.farlo-page .suggested-donations__item-options li.suggested-donations__item-roundup {
	grid-area: donation-roundup;
}
body.farlo-page .suggested-donations__item-options li.suggested-donations__item-roundup label {
	height: 100%;
}
body.farlo-page .suggested-donations__item-options li input {
	left: -9999em;
	position: absolute;
}
body.farlo-page .suggested-donations__item-options li input:checked + label {
	background: var(--global-primary-colour);
	border-color: var(--global-primary-colour);
	color: white;
}
body.farlo-page .suggested-donations__item-options li input:checked + label:hover {
	color: white;
}
body.farlo-page .payment-form #payment-element {
	background: var(--global-tertiary-colour) !important;
	margin-bottom: 30px;
}
body.farlo-page .account-previous-transactions {
	display: flex;
	flex-wrap: wrap;
}
body.farlo-page .account-previous-transactions__heading, body.farlo-page .account-previous-transactions__item {
	align-items: center;
	display: flex;
	flex: 1 0 100%;
	justify-content: space-between;
	padding: 10px 10px;
}
body.farlo-page .account-previous-transactions__heading > div, body.farlo-page .account-previous-transactions__item > div {
	padding: 0 10px;
}
body.farlo-page .account-previous-transactions__heading {
	border-bottom: 2px solid var(--primary-colour);
	margin-bottom: 10px;
}
body.farlo-page .account-previous-transactions__item {
	background: var(--global-tertiary-colour);
	margin: 10px 0;
}
body.farlo-page .account-previous-transactions__order-id, body.farlo-page .account-previous-transactions__total {
	flex: 0 1 15%;
}
body.farlo-page .account-previous-transactions__date {
	flex: auto;
}
body.farlo-page .account-previous-transactions__actions {
	flex: 0 0 170px;
}
body.farlo-page .enhanced-show-content-wrapper-v2 {
	margin-bottom: -2rem;
}
body.farlo-page .container-v1-news-section {
	padding: 0;
}
body.farlo-page .show-content-container {
	padding-top: 24px;
}
body.farlo-page .show-content-container > .row {
	display: flex;
	flex-direction: column;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container > .row {
		flex-direction: row;
	}
}
body.farlo-page .show-content-container-main {
	order: -1;
}
body.farlo-page .show-content-container-sidebar {
	padding-top: 0;
	z-index: 2;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-sidebar__sticky {
		position: sticky;
		top: 64px;
	}
}
body.farlo-page .show-content-container-sidebar__section {
	background: var(--global-very-light-blue);
	border-radius: 8px 8px 8px 8px;
	margin-bottom: 32px;
	padding: 24px;
}
body.farlo-page .show-content-container-sidebar__cta {
	background: white;
	border-radius: 0;
	border-top: 1px solid var(--global-light-grey);
	bottom: 0;
	left: 0;
	margin-bottom: 0;
	padding: 16px;
	position: fixed;
	right: 0;
	z-index: 10;
}
body.farlo-page .show-content-container-sidebar__cta-price {
	white-space: nowrap;
}
body.farlo-page .show-content-container-sidebar__cta .call-to-action-alert {
	border-radius: 4px 4px 4px 4px;
	position: relative;
}
body.farlo-page .show-content-container-sidebar__cta .call-to-action-alert a {
	border-radius: 4px 4px 4px 4px;
}
body.farlo-page .show-content-container-sidebar__cta .call-to-action-button {
	max-width: none;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-sidebar__cta {
		background: var(--global-very-light-blue);
		border: 0;
		border-radius: 8px 8px 8px 8px;
		bottom: unset;
		left: unset;
		margin-bottom: 32px;
		padding: 24px;
		position: relative;
		right: unset;
	}
}
@media screen and (max-width: 979.9px) {
	body.farlo-page .show-content-container-sidebar {
		width: 100%;
	}
}
body.farlo-page .glance-heading img {
	margin-bottom: 8px;
	max-width: 300px;
	width: 75%;
}
body.farlo-page .glance-heading p {
	font-size: 14px;
	line-height: 1.3334;
}
body.farlo-page .glance-items {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
body.farlo-page .glance-items .glance-item {
	display: flex;
	flex: 1 0 calc(50% - 8px);
	gap: 8px;
}
body.farlo-page .glance-items .glance-item img {
	background: white;
	border-radius: 10px;
	height: 20px;
	transform: translateY(3px);
	width: 20px;
}
body.farlo-page .glance-items .glance-item-heading {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 4px;
}
body.farlo-page .glance-items .glance-item p {
	margin: 0;
}
body.farlo-page .glance-items .glance-item a {
	color: var(--global-secondary-accent-colour);
	text-decoration: underline;
}
body.farlo-page .glance-items .glance-item a strong,
body.farlo-page .glance-items .glance-item a b,
body.farlo-page .glance-items .glance-item a em {
	color: var(--global-secondary-accent-colour);
}
body.farlo-page .glance-items .glance-item-description {
	color: var(--global-primary-text-colour);
	font-size: 12px;
	text-transform: none;
}
body.farlo-page .glance-items .glance-item-description * {
	color: var(--global-primary-text-colour);
	font-size: 12px;
	text-transform: none;
}
body.farlo-page .glance-categories {
	margin-top: 16px;
}
body.farlo-page .show-content-container-section .section-pullquote {
	margin: 0;
	padding: 0;
}
body.farlo-page .show-content-container-section .section-pullquote blockquote {
	border: 0;
	color: var(--global-primary-text-colour);
	font-size: 24px;
	line-height: 1.1;
	margin: 0;
	padding: 0;
	padding: 32px;
	text-align: left;
}
body.farlo-page .show-content-container-section .section-pullquote cite {
	color: var(--global-primary-accent-colour);
	font-size: var(--global-font-size-base);
	font-weight: normal;
	letter-spacing: normal;
	margin: 0;
	margin-top: 8px;
	padding: 0;
	text-transform: none;
}
body.farlo-page .section-featured-video {
	padding-bottom: 0;
	padding-top: 0;
}
body.farlo-page .section-featured-video .video {
	overflow: hidden;
	padding-bottom: 0;
	padding-top: 0;
}
@media (min-width: 980px) {
	body.farlo-page .section-featured-video .video {
		border-radius: 8px 8px 8px 8px;
	}
}
body.farlo-page .show-content-container-section .single-show-accessibility {
	background: var(--global-very-light-grey);
	border-radius: 8px 8px 8px 8px;
	margin-top: 16px;
	padding: 16px;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-section .single-show-accessibility {
		padding: 32px;
	}
}
body.farlo-page .show-content-container-section .single-show-accessibility-single-section {
	margin-bottom: 32px;
}
body.farlo-page .show-content-container-section .single-show-accessibility-single-section h4 {
	font: var(--global-heading-h6);
}
body.farlo-page .show-content-container-section .single-show-accessibility-single-section p {
	font-size: 16px;
	line-height: 1.334;
}
body.farlo-page .show-content-container-section .venue-accessibility__header {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 16px;
}
body.farlo-page .show-content-container-section .venue-accessibility__header-left {
	flex: 1;
	max-width: 880px;
}
body.farlo-page .show-content-container-section .venue-accessibility__header-right {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-left: auto;
}
body.farlo-page .show-content-container-section .venue-accessibility__header-right > a {
	flex: 1;
	font-weight: normal;
	text-decoration: underline;
	white-space: nowrap;
}
body.farlo-page .show-content-container-section .venue-accessibility__toggle-link {
	cursor: pointer;
	display: inline-flex;
	margin-bottom: 16px;
}
body.farlo-page .show-content-container-section .venue-accessibility__sections {
	border: 1px solid var(--global-light-grey);
	border-radius: 6px 6px 6px 6px;
	padding: 16px;
}
body.farlo-page .show-content-container-section .venue-accessibility__section {
	margin-bottom: 16px;
}
body.farlo-page .show-content-container-section .venue-accessibility__section-description {
	color: var(--global-secondary-text-colour);
	margin: 0;
}
body.farlo-page .show-content-container-section .venue-accessibility__options {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
body.farlo-page .show-content-container-section .venue-accessibility__option {
	background: var(--global-very-light-grey);
	border-radius: 8px 8px 8px 8px;
	flex: 1;
	padding: 16px;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-section .venue-accessibility__option {
		flex: 1 0 48.5%;
		max-width: 48.5%;
	}
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-section .venue-accessibility__option {
		padding: 32px;
	}
}
body.farlo-page .show-content-container-section .venue-accessibility__option h5 {
	margin: 0;
}
body.farlo-page .accessibility-seating-plan .na {
	fill: var(--global-light-grey);
}
body.farlo-page .accessibility-seating-plan svg {
	height: auto;
	max-width: 100%;
}
body.farlo-page .accessibility-seating-plan svg circle.accessible-seat {
	cursor: pointer;
	transition: all 0.2s ease;
}
body.farlo-page .accessibility-seating-plan svg circle.accessible-seat:not(.accessible-seat--active) {
	opacity: 0.3;
}
body.farlo-page .accessibility-seating-plan svg circle.accessible-seat--active {
	fill: #00a8e8 !important;
	opacity: 1;
	stroke: #005f7f !important;
	stroke-width: 2 !important;
}
body.farlo-page .accessibility-seating-plan svg circle.accessible-seat--active:hover {
	fill: #0095d0 !important;
	stroke: #004a66 !important;
	stroke-width: 3 !important;
}
body.farlo-page .farlo-ui-lightbox--accessibility .farlo-ui-lightbox__content {
	max-height: 90vh;
	max-width: 90vw;
	width: auto;
}
body.farlo-page .farlo-ui-lightbox--accessibility .farlo-ui-lightbox__header {
	border-bottom: 1px solid #e0e0e0;
	padding: 1.5rem;
}
body.farlo-page .farlo-ui-lightbox--accessibility .farlo-ui-lightbox__title {
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}
body.farlo-page .farlo-ui-lightbox--accessibility .farlo-ui-lightbox__body {
	max-height: calc(90vh - 120px);
	overflow: auto;
	padding: 2rem;
}
body.farlo-page .farlo-ui-lightbox--accessibility .accessibility-seating-plan {
	align-items: center;
	display: flex;
	justify-content: center;
}
body.farlo-page .hero-container {
	position: relative;
}
body.farlo-page .hero-container .hero-show-media {
	background: white;
	border: 1px solid #CCCCCC;
	border-radius: 8px 8px 0 0;
	bottom: 0;
	display: flex;
	display: none;
	gap: 8px;
	padding: 8px;
	position: absolute;
	right: 20px;
}
@media (min-width: 980px) {
	body.farlo-page .hero-container .hero-show-media {
		display: flex;
	}
}
body.farlo-page .show-single-venue-address {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
body.farlo-page .show-single-venue-address-details {
	align-items: flex-end;
	background: var(--global-very-light-grey);
	border-radius: 4px 4px 4px 4px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 16px;
}
body.farlo-page .show-single-venue-address-box {
	flex: 1;
}
@media (min-width: 980px) {
	body.farlo-page .show-single-venue-address-box {
		flex: 0 0 60%;
	}
}
body.farlo-page .show-single-venue-address-box h4,
body.farlo-page .show-single-venue-address-box .show-single-venue-address-location {
	color: var(--global-primary-accent-colour);
}
@media (min-width: 980px) {
	body.farlo-page .show-single-venue-address-controls {
		margin-left: auto;
	}
}
body.farlo-page .show-single-venue-address-closest {
	align-items: center;
	color: var(--global-secondary-text-color);
	display: flex;
	font-size: var(--global-font-size-small);
	gap: 8px;
	margin-top: 4px;
}
body.farlo-page .show-single-venue-address h4, body.farlo-page .show-single-venue-address-location {
	font: var(--global-heading-h6);
	margin: 0;
	text-transform: uppercase;
}
body.farlo-page .show-single-venue-address-transport h4 {
	margin-bottom: 16px;
}
body.farlo-page .show-single-venue-address-transport-stations {
	display: grid;
	gap: 16px;
	gap: 0;
	grid-template-columns: repeat(2, 1fr);
	margin: -10px;
}
body.farlo-page .show-single-venue-address-transport-station {
	align-items: flex-start;
	border-color: var(--global-light-grey);
	border-style: solid;
	border-width: 0 0 1px 1px;
	display: flex;
	gap: 16px;
	justify-content: flex-start;
	padding: 10px;
}
body.farlo-page .show-single-venue-address-transport-station:nth-child(odd) {
	border-left: 0;
}
body.farlo-page .show-single-venue-address-transport-station:nth-last-child(-n+2) {
	border-bottom: 0;
}
body.farlo-page .show-single-venue-address-transport-station-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
@media (min-width: 980px) {
	body.farlo-page .show-single-venue-address-transport-station-info {
		flex-direction: row;
		width: 100%;
	}
}
body.farlo-page .show-single-venue-address-transport-station-details {
	flex: 1 0 40%;
}
body.farlo-page .show-single-venue-address-transport-station-details .h6 {
	line-height: 1;
}
body.farlo-page .show-single-venue-address-transport-station-lines {
	display: grid;
	gap: 2px;
	grid-template-columns: 1fr;
	grid-template-columns: repeat(4, 1fr);
}
body.farlo-page .show-single-venue-address-transport-station-distance {
	color: var(--global-secondary-text-color);
	font-size: var(--global-font-size-small);
	font-weight: 400;
	white-space: nowrap;
}
body.farlo-page .show-single-venue-address-parking {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
body.farlo-page .show-single-venue-address-parking h4 {
	flex: 1 0 100%;
}
body.farlo-page .show-single-venue-address-parking a {
	margin-left: auto;
}
body.farlo-page .show-single-theatre-info {
	margin-bottom: 3rem;
}
body.farlo-page .show-single-theatre-info__left {
	margin-top: 32px;
}
@media (min-width: 1024px) {
	body.farlo-page .show-single-theatre-info > .row {
		display: flex;
	}
	body.farlo-page .show-single-theatre-info__left {
		margin-top: 0;
	}
	body.farlo-page .show-single-theatre-info__right {
		order: 2;
	}
}
body.farlo-page .show-single-theatre-info .section-title {
	margin-bottom: 1.5rem;
}
body.farlo-page .show-single-theatre-info-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 8px;
}
body.farlo-page .show-single-theatre-info-details-link {
	align-items: center;
	display: inline-flex;
}
body.farlo-page .show-single-theatre-info-details-link .chevron {
	align-items: center;
	display: inline-flex;
	font-size: 0.875em;
}
body.farlo-page .show-single-theatre-info-image img {
	border-radius: 4px;
	display: block;
	height: auto;
	width: 100%;
}
@media (max-width: 991px) {
	body.farlo-page .show-single-theatre-info-image {
		margin-top: 2rem;
	}
}
body.farlo-page .show-content-container-section[data-scrolltab=overview] .section-title {
	margin-bottom: 16px;
	margin-top: 16px;
}
@media (min-width: 980px) {
	body.farlo-page .show-content-container-section[data-scrolltab=overview] .section-title {
		margin-bottom: 32px;
		margin-top: 32px;
	}
}
body.farlo-page .show-content-container-section[data-scrolltab=overview] .entry-content {
	max-height: none !important;
	overflow: visible !important;
}
body.farlo-page .show-content-container-section[data-scrolltab=overview] .entry-content[data-content-toggle] {
	position: relative;
}
body.farlo-page .show-content-container-section[data-scrolltab=overview] .entry-content[data-content-toggle] [data-toggle-content] {
	overflow: visible;
}
body.farlo-page .show-content-container-section[data-scrolltab=overview] .entry-content[data-content-toggle][data-toggle-mode=clamp] [data-toggle-content] {
	overflow: hidden;
}
body.farlo-page .show-content-container-section[data-scrolltab=overview] .entry-content:not(.is-expanded) [data-toggle-link] {
	margin-top: 1rem;
}
/*# sourceMappingURL=farlo-nliven-public.css.map */