body {
    font-family: Arial, sans-serif;
	margin: 0;
	box-sizing: border-box;
}

#flash-toggle {
	display: none;
}

#video-container {
	text-align: center;
}
#qr-video {
	max-width: 100%;
    height: auto;
	max-height: calc(100vh - 270px);
}
.header {
	height: 70px;
	position: fixed;
	top: 0px;
	width: 100%;
	border-bottom: 1px dotted #13556e;
	background-color: #fff;
	line-height: 70px;
	display: flex;
	z-index: 1;
	flex-direction: row;
}
.header-logo {
	text-align: right;
}
.header-logo img {
	margin-bottom: 4px;
}
.header img, .header svg {
	vertical-align: middle;
}
.header svg {
	color: #777;
	margin-left: 10px;
	margin-right: 10px;
}
.header-refresh {
	width: 100%;
	text-align: right;
	color: #13556e;
	padding-right: 10px;
}
.header-refresh.spinning {
	color: #aaa;
}
.header-refresh.spinning svg {
	animation: anispinner 1s infinite linear;
}
@keyframes anispinner{ 
	100%{transform: rotate(1turn)}
}

.menu {
	position: relative;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: -255px;
	/* left: 0px; */
	width: 250px;
	background-color: #fff;
	z-index: 3;
	padding: 18px;
	transition: left 0.3s;
}
.menu .menu-item {
	color: #222;
	font-size: 15px;
	cursor: pointer;
	height: 45px;
}
.menu .menu-item a {
	color: #222;
}
.menu .menu-item span, .menu .menu-item svg {
	vertical-align: middle;
}
.menu .menu-item svg {
	margin-right: 5px;
	color: #777;
}
.menu-close {
	position: absolute;
	top: 0px;
	right: 0px;
	margin: 10px 10px 0 0;
}
.backdrop {
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: #000;
	z-index: 2;
	display: none;
	opacity: 0.4;
}

.toolbar {
	/*height: 70px;*/
	position: fixed;
	bottom: 0px;
	width: 100%;
	background-color: #13556e;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	color: #bbb;
	padding-bottom: 20px;
	z-index: 1;
}
.toolbar .tablink {
	text-decoration: none;
	color: inherit;
	padding: 8px 0;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 100%;
	font-size: 14px;
}
.toolbar .tablink span {
	margin-top: 3px;
}
.toolbar .tablink.active {
	color: #fff;
}

.content {
	margin: 90px 20px 110px 20px;
}

.panel-body {
	color: #444;
}

.cartitem {
	display: block;
	padding: 15px;
	border: 1px solid #ddd;
	background-color: #eee;
	margin-bottom: 8px;
	border-radius: 5px;
}

.cartitem.subitem {
	margin-left: 40px;
	margin-top: -16px;
	border-top-style: dashed;
	border-top-color: #aaa;
}

.cartitem h4 {
	margin-bottom: 2px;
}

.cartitem .controls,
.cartcustomextras .controls,
.cartdeposit .controls {
	float: right;
	margin-right: 5px;
}
.cartitem .addition {
	font-size: 14px;
}
.cartitem .addition span {
	font-style: italic;
}

.cartitem .extras {
	font-style: italic;
	margin-left: 10px;
}

.cartcustomextras {
	display: block;
	padding: 15px;
	border: 1px solid #ddd;
	background-color: #eee;
	margin-bottom: 8px;
	border-radius: 5px;
}
.cartcustomextras::after {
	content: "";
	display: table;
	clear: both;
}
.cartcustomextras h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 3px;
	margin-top: 0px;
}
.cartcustomextras .item {
	color: #666;
}
.customextratable {
	margin-top: 10px;
}
.customextratable td {
	padding: 2px 5px 2px 2px;
}
#customextrasshort {
	font-style: italic;
}
#customextrasshort span {
	font-style: italic;
	font-weight: bold;
	/*text-decoration: underline double #f00;*/

}
.cartdeposit {
	display: block;
	padding: 15px;
	border: 1px solid #ddd;
	background-color: #eee;
	margin-bottom: 8px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 14px;
}
.cartdeposit:after {
	content: "";
	display: table;
	clear: both;
}

.carttotal {
	display: block;
	padding: 15px;
	border: 1px solid #ddd;
	background-color: #eee;
	margin-bottom: 8px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 20px;
}
.cartitem .details {
	background-color: #fff;
	border-radius: 5px;
	display: none;
}
.cartitem .details .table {
	margin-bottom: 0px;
}


.reservation-popup {
	text-align: left;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 4;
	/* display: none; */
	padding: 10px 10px;
}
.reservation-popup-container {
	border-radius: 20px;
	background-color: #fff;
	position: relative;
	max-height: 100%;
	overflow: auto;
	font-size: 18px;
	height: 100%;
}
.reservation-popup-container-close {
	position: absolute;
	top: 8px;
	right: 8px;
	color: #fff;
}
.reservation-popup-container-title {
	color: #222;
	font-weight: bold;
	font-size: 18px;
	padding: 13px 20px 10px 17px;
	border-bottom: 1px solid #808080;
}
.reservation-popup-container-content {
	padding: 10px 20px 20px 20px;
	color: #ddd;
	height: calc(100% - 50px);
}
.reservation-popup-container-iframe {
	border: none; width: 100%; height: 100%; min-height: 150px;
}
.reservation-app-status {
	border-radius: 10px;
	text-align: center;
	padding: 20px 10px;
	margin-bottom: 20px;
	font-size: 16px;
}
.reservation-app-status span {
	font-size: 14px;
}
.reservation-app-status.ok {
	background-color: #009900;
	color: #fff;
}
.reservation-app-status.notok {
	background-color: #990000;
	color: #fff;
}
.reservation-app-status.warning {
	background-color: #e78800;
	color: #fff;
}
.reservations-content {
	position: relative;
}
.loading-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: #fff;
	opacity: 0.6;
}

.help-popup {
	text-align: left;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 4;
	/* display: none; */
	padding: 10px 10px;
}
.help-popup-container {
	border-radius: 20px;
	background-color: #fff;
	position: relative;
	max-height: 100%;
	overflow: auto;
	font-size: 15px;
	height: 100%;
}
.help-popup-container-close {
	position: absolute;
	top: 8px;
	right: 8px;
	color: #fff;
}
.help-popup-container-title {
	color: #222;
	font-weight: bold;
	font-size: 18px;
	padding: 13px 20px 10px 17px;
	border-bottom: 1px solid #808080;
}
.help-popup-container-content {
	padding: 10px 20px 20px 20px;
	color: #222;
	height: calc(100% - 50px);
	overflow: auto;
}
.help-popup-container-content .question {
	font-style: italic;
	margin-bottom: 5px;
}
.help-popup-container-content .answer {
	padding: 5px 5px 5px 10px;
	border-left: 1px solid #bbb;
	margin-bottom: 20px;
}



button.btn-primary, a.btn-primary, 
button.btn-primary:active, a.btn-primary:active,
button.btn-primary:focus, a.btn-primary:focus, 
button.btn-primary:hover, a.btn-primary:hover { 
	background-color: #13556e; 
	border-color: #13556e; 
	color: #fff; 
}


.individual-items-container {
	display: flex;
	flex-wrap: wrap;
}
.popupselectedindividualitems,
.selectedindividualitems {
	display: flex;
	flex-wrap: wrap;
}
.popupunselectedindividualitems .itemscontainer {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
	background-color: #fafafa;
	border-radius: 5px;
	padding: 15px 15px 7px 15px;
	margin-bottom: 8px;
}
.individual-items-add {
	display: flex;
	padding: 15px;
	border: 1px solid #ddd;
	background-color: #eee;
	margin-bottom: 8px;
	border-radius: 5px;
	font-size: 30px;
	font-weight: bold;
	align-items: center;
	cursor: pointer;
}
.individual-item-small,
.individual-item {
	display: block;
	padding: 15px;
	border: 1px solid #ddd;
	background-color: #eee;
	max-width: 500px;
	margin-bottom: 8px;
	border-radius: 5px;
}
.individual-item {
	width: 200px;
	margin-right: 8px;
	overflow-wrap: break-word;
	hyphens: auto;
}
.individual-item-small {
	width: 130px;
	margin-right: 8px;
	cursor: pointer;
	overflow-wrap: break-word;
	hyphens: auto;
	background-color: #fff;
}
.individual-item.alert,
.individual-item-small.alert {
	background-color: #fcf8e3;
}
.individual-item.unavailable,
.individual-item-small.unavailable {
	background-color: #f2dede;
	cursor: not-allowed;
}
.individual-item.available,
.individual-item-small.available {
	background-color: #dff0d8;
}
.individual-item-title {
	display: block;
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 8px;
	margin-top: -4px;
}

.individual-item-small .individual-item-label {
	margin-bottom: 5px;
	font-size: 25px;
	font-weight: bold;
	line-height: 1;
}
.individual-item.flash {
    animation: flashind linear 800ms 2 forwards;
}
@keyframes flashind {
    0%, 100% {
		background-color: #558142;
    }
    50% {
		background-color: #83a575;
    }
}
.individual-item {
	background-color: #558142;
	color: #fff;
}
.individual-item .controls {
	margin: -5px -5px 5px 5px !important;
}

.individual-item .individual-item-label {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}

.individual-item .controls {
	float: right;
	margin-right: 5px;
}
.individual-item:after {
	content: "";
	display: table;
	clear: both;
}

.flash {
    animation: flash linear 800ms 2 forwards;
}
@keyframes flash {
    0%, 100% {
		background-color: #fff;
    }
    50% {
		background-color: #dff0d8;
    }
}

.flasherror {
    animation: flasherror linear 800ms 2 forwards;
}
@keyframes flasherror {
    0%, 100% {
		background-color: #fff;
    }
    50% {
		background-color: #f0d8d8;
    }
}