<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Document
 */
*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
strong{
	font-weight: 900;
}
body{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	font-family: 'Roboto Slab', serif;
	background: #FAFAFA url(../img/loading.gif) center no-repeat;
}

/**
 * Room Selector
 */
.room-selector{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px 60px;
	color: #85B725;
	background: #FFF;
}
.room-selector h1{
	margin: 0 0 15px;
	font-size: 80px;
	text-align: center;
}
.room-selector ul{
	margin: 0 0 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
}
.room-selector li{
	margin: 15px;
}
.room-selector a{
	display: block;
	padding: 15px 20px;
	font-size: 32px;
	text-decoration: none;
	color: #FFF;
	background: #85B725;
}
.room-selector a:hover,
.room-selector a:focus{
	background: #3636B2;
}

/**
 * POT
 */
#ace-pot{
	overflow: hidden;
	position: relative;
	margin: auto;
	width: 800px;
	height: 480px;
}

/**
 * Screens
 */
.screen{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 30px 45px;
	font-size: 28px;
	color: #FFF;
	background: #85B725;
}

/**
 * Home Screen
 */
#home{
	z-index: 10;
	background: #85B725;
}

/**
 * Popup Screen
 */
#popup{
	z-index: 20;
	display: none;
}
#popup &gt; div{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 30px 45px;
}

/**
 * Error Screen
 */
#error{
	z-index: 30;
	display: none;
	padding: 0;
}
#error &gt; div{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	font-size: 26px;
	text-align: center;
	background: #8F009B;
}
#error h2{
	font-size: 120px;
}
#error p:nth-child(2){
	margin: 15px 0;
	font-size: 40px;
}

/**
 * Timer
 */
#timer{
	z-index: 100;
	position: absolute;
	top: 30px;
	left: 50%;
	display: none;
	min-width: 120px;
	padding: 15px;
	font-size: 60px;
	color: #FFF;
	text-align: center;
	border-radius: 16px;
	background: rgba( 0, 0, 0, 0.25 );
	transform: translate( -50%, 0 );
	text-shadow: 0 0 10px #000;
}

/**
 * Home Screen Elements
 */
.header{
	position: absolute;
	top: 15px;
	left: 0;
	padding: 0 15px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	font-size: 14px;
	color: #FFF;
}
.room-title{
	font-size: 40px;
	margin-bottom: 15px;
}
.message{
	position: absolute;
	top: 80px;
	right: 40%;
	bottom: 10%;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	line-height: 1.3;
	color: #FFF;
	text-align: center;
}
.message strong{
	font-size: 50px;
	line-height: 1.2;
}
.occupancy{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 10%;
	left: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
	font-size: 28px;
	text-align: center;
	color: #85B725;
	background: #FFF;
}
.occupancy strong{
	font-size: 250px;
	line-height: 1;
}
.extra{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	color: #FFF;
	text-align: center;
	background: #3636B2;
}

/**
 * Forbidden
 */
 .forbidden{
	background: #E30689;
}
.forbidden-instructions{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 65%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5%;
	font-size: 24px;
	text-align: center;
	color: #E30689;
	background: #FFF;
}
.forbidden-instructions p{
	margin-bottom: 40px;
}
.forbidden-instructions p:last-child{
	margin: 0;
}
.forbidden-instructions img{
	display: block;
	margin: 15px auto 0;
}
.forbidden-message{
	position: absolute;
	top: 20%;
	right: 35%;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 35px;
	text-align: center;
	color: #FFF;
}
.forbidden-message strong{
	font-size: 90px;
}

/**
 * Local Check-in Menu
 */
 .local-check-in-menu-title{
	margin-bottom: 30px;
	font-size: 22px;
	color: black;
}
.local-check-in-menu-menu{
	position: absolute;
	top: 120px;
	left: 0;
	padding: 30px 15px;
	width: 100%;
	height: 300px;
	background: #FFF;
}
.local-check-in-menu-options{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.local-check-in-menu-menu button{
	width: calc( 20% - 15px );
	padding: 15px 30px;
	font-size: 18px;
	color: #FFF;
	background: #5D6667;
	border: none;
	border-radius: 15px;
}
.local-check-in-menu-menu .local-check-in-button-calendar{
	padding-bottom: 20px;
	height: 181px;
	font: 700 18px/1.2 'Roboto Slab', serif;
	background: #E30689;
}
.local-check-in-menu-menu button:hover,
.local-check-in-menu-menu button:focus{
	background: #85B725;
	cursor: pointer;
}
.local-check-in-menu-menu button strong{
	display: block;
	font-size: 60px;
}
.local-checkin-full-message{
	position: absolute;
	top: 140px;
	left: 0;
	padding: 30px;
	width: 100%;
	height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	font-size: 20px;
	color: #000;
	background: #FFF;
}
.local-checkin-full-message &gt; *{
	margin: 10px 0;
}
.local-checkin-full-message h2{
	font-weight: 400;
	font-size: 26px;
}

#forbidden-membership .forbidden-message{
	padding: 0 30px;

}
#forbidden-membership .forbidden-message-lg{
	font-size: 120px;
	line-height: 1;
}
#forbidden-membership .forbidden-message-md{
	font-size: 50px;
	line-height: 1.2;
}
#forbidden-membership .forbidden-message-sm{
	padding: 0 60px;
	font-size: 26px;
	line-height: 1.2;
}
#forbidden-membership .forbidden-instructions{
	justify-content: flex-start;
}
#forbidden-membership .forbidden-instructions p:first-child{
	font-size: 38px;
}

.sessions-table-wrapper{
	overflow: auto;
}
.sessions-table{
	min-width: 700px;
}

/**
 * V2 Templates
 */
 #popup .ace-screen{
	display: grid;
	gap: 0px 0px;
	padding: 0;
}
#popup .ace-screen &gt; *{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#popup .ace-header .clock{
	margin: 0 15px;
	font-size: 14px;
}
#popup .ace-header .room-title{
	margin: 0 15px;
	font-size: 40px;
}

/**
 * Default Template
 */
#popup .ace-screen-default{
	grid-template-columns: 550px 250px;
	grid-template-rows: 105px 315px 60px;
}
#popup .ace-screen-default .ace-header{
	grid-area: 1 / 1 / 2 / 2;
	background: #E30689;
}
#popup .ace-screen-default .ace-content{
	grid-area: 2 / 1 / 3 / 2;
	font-size: 24px;
	background: #E30689;
}
#popup .ace-screen-default .ace-sidebar{
	grid-area: 1 / 2 / 3 / 3;
	font-size: 20px;
	color: #000;
	text-align: center;
	background: #FFF;
}
#popup .ace-screen-default .ace-footer{
	grid-area: 3 / 1 / 4 / 3;
	background: #3637B2;
}

/**
 * Content Only Template
 */
 #popup .ace-screen-content-only{
	grid-template-columns: 1fr;
	grid-template-rows: 105px 375px;
}
#popup .ace-screen-content-only .ace-content{
	color: #000;
	background: #FFF;
}

/**
 * Local Check-in Full
 */
#popup .local-check-in-full .ace-content p{
	margin: 0 15px 30px;
}
#popup .local-check-in-full .ace-content p em{
	font-style: normal;
	font-size: 32px;
}
#popup .local-check-in-full .ace-sidebar p{
	margin: 15px;
}
#popup .ace-view-calendar-button{
	margin: 15px 30px;
	padding: 10px 15px;
	font-size: 18px;
	color: #FFF;
	text-decoration: none;
	background: #85B725;
	border-radius: 20px;
	border: none;
}

/**
 * Calendar
 */
 :root{
	--hours: 6;
	--hour-text: 30px;
}
.ace-calendar-canvas{
	position: relative;
	display: flex;
	justify-content: flex-start;
	margin: 0 30px 0 15px;
	max-height: 340px;
	overflow: auto;
}
.ace-calendar-canvas::before{
	content: "";
	position: absolute;
	top: 0;
	left: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 14px 10px 0;
	border-color: transparent #808080 transparent transparent;
}
.ace-calendar-canvas::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 14px;
	border-color: transparent transparent transparent #808080;
}
.ace-calendar-titles{
	padding-top: var(--hour-text);
}
.ace-calendar-titles div{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 10px 0 0;
	height: 60px;
	font-size: 12px;
	font-weight: bold;
}
.ace-calendar-body{
	flex-grow: 1;
	overflow: auto;
	position: relative;
	margin: auto;
	padding-top: var(--hour-text);
}
.ace-calendar-spaces{
	width: calc( 100% * ( 24 / var(--hours) ) );
}
.ace-calendar-space{
	position: relative;
	height: 60px;
	border: 1px solid gray;
}
.ace-calendar-booking,
.ace-calendar-maintenance{
	z-index: 2;
	position: absolute;
	top: 50%;
	left: calc( ( 100% / 24 ) * var(--start) );
	display: flex;
	padding: 0 10px;
	width: calc( ( 100% / 24 ) * var(--end) );
	height: 28px;
	line-height: 28px;
	background: #F7CC00;
	transform: translate( 0, -50% );

	border-radius: 12px;
}
.ace-calendar-booking-late-check-out{
	background: red;
}
.ace-calendar-maintenance{
	top: 0;
	bottom: 0;
	padding: 30px;
	align-items: center;
	height: auto;
	background: #eaecee;
	transform: none;
	border-radius: 0;
}
.ace-calendar-maintenance span,
.ace-calendar-booking span{
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}
.ace-calendar-maintenances,
.ace-calendar-hours{
	position: absolute;
	top: var(--hour-text);
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	width: calc( 100% * ( 24 / var(--hours) ) );
}
.ace-calendar-hour{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: calc( 100% / 24 );
	border: 1px solid gray;
}
.ace-calendar-hour-text{
	font-size: 12px;
	height: var(--hour-text);
	transform: translate( 0, -100% );
}
.ace-calendar-titles div{
	padding: 0 15px;
	font-size: 16px;
}
.ace-calendar-canvas::before{
	left: 22px;
}
.back-button{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 100px;
	height: 50px;
	color: #FFF;
	font: 700 20px/1.2 'Roboto Slab', serif;
	text-transform: uppercase;
	background: #E30689;
	border: none;
	border-radius: 10px;
}
.back-button:hover,
.back-button:focus{
	color: #E30689;
	background: #FFF;
}


/**
 * Check In Full (Late)
 */
 #popup .check-in-full-late .ace-content{
	justify-content: flex-start;
	text-align: center;
 }
 #popup .check-in-full-late .ace-content p{
	 margin-bottom: 30px;
	 font-size: 20px;
 }
 #popup .check-in-full-late .ace-content em{
	 font-size: 46px;
	 font-style: normal;
 }
 #popup .check-in-full-late .ace-sidebar p{
	margin-bottom: 30px;
}
#popup .ace-footer{
	text-align: center;
}

/**
 * Check In (Late)
 */
.check-in-late .message p{
	margin-bottom: 30px;
}

/**
 * Too Early Check In
 */
 #popup .too-early-check-in .message b{
	 font-weight: 700;
	 font-size: 40px;
 }
#popup .too-early-check-in .message2{
	margin-top: 20px;
	font-size: 20px;
}
#popup .too-early-check-in .message2 b{
	font-size: 24px;
}
#popup .too-early-check-in-button{
	display: block;
	margin: 15px auto 0;
	padding: 10px 20px;
	color: #3636B2;
	font-weight: 700;
	background: #FFF;
	border-radius: 30px;
	border: none;
}</pre></body></html>