﻿body > .content {
	position: absolute;
	left: 0;
	top: 60px;
	width: 100%;
	height: calc(100% - 60px);

	overflow: auto;
	overflow-y: auto;
	overflow-x: hidden;
}

.info {
	position: absolute;
    z-index: 1;
	top: 0;
	left: 50%;
	max-width: 1100px;
	width: 100%;
	height: 60px;

	padding: 0 20px;

	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);

	-webkit-box-shadow: 0px 15px 20px -20px rgba(0, 0, 0, 1);
	-moz-box-shadow: 0px 15px 20px -20px rgba(0, 0, 0, 1);
	box-shadow: 0px 15px 20px -20px rgba(0, 0, 0, 1);
}

.info .icons a:hover { text-decoration: none; }
.info .icons a { display: inline-block; }
  .info .icons a ~ a
, .info .icons span ~ span { margin-left: 10px; }
.info .icons { line-height: 60px; }

@media (max-width: 768px) {
	  .info .icons a ~ a
	, .info .icons span ~ span { margin-left: 5px; }
}

.info > a {
	line-height: 60px;
	color: #fff;
	font-size: 20px;
	float: right;
}

@media (min-width: 769px) {
	.info > a::after {
		content: ' >>';
	}
}

.info .text, .info .responsive {
	font-size: 20px;
	color: #fff;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background: none;
	padding: 0;
}

.info .icons span {
	min-width: 30px;
    height: 30px;
    line-height: 30px;

	font-size: 1rem;
}

.info .text {
	line-height: 40px;
	vertical-align: middle;
	font-weight: normal;
}

.info .text span { font-weight: normal; }

.info .responsive {
	display: inline;
	vertical-align: baseline;
}

@media (max-width: 768px) {
	.info .responsive { display: none; }
}

.boxes {
	position: absolute;
	top: 0;
	left: 50%;

	max-width: 1100px;
	width: 100%;
	max-height: 100%;
	margin: auto;
	padding: 20px;

	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.boxes button {
	position: relative;

	display: inline-block;
	width: 150px;
	height: 150px;
	line-height: 1;
	margin: 20px;
	padding: 80px 20px 20px 20px;
	background: #fff;
	color: #b4252d;

	text-transform: none;
	text-align: center;
	font-size: 24px;

	cursor: pointer;

	-webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);

	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.boxes button::before
, .boxes button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background: no-repeat center 20px;
	-webkit-background-size: 60%;
	-moz-background-size: 60%;
	-ms-background-size: 60%;
	-o-background-size: 60%;
	background-size: 60%;

	-webkit-transition: opacity 150ms ease-in-out;
	-moz-transition: opacity 150ms ease-in-out;
	-ms-transition: opacity 150ms ease-in-out;
	-o-transition: opacity 150ms ease-in-out;
	transition: opacity 150ms ease-in-out;
}

.boxes button::before {
	opacity: 0.25;
	background-image: url('/Content/stadium_red.svg');
}


.boxes button::after {
	opacity: 0;
	background-image: url('/Content/stadium_white.svg');
}

.boxes button:hover::before { opacity: 0; }
.boxes button:hover::after { opacity: 0.25; }

.boxes button:hover {
	background-color: #b4252d;
	color: #fff;
	text-decoration: none;
}

.boxes button:active {
	-webkit-transform: translate(2px, 5px);
	-moz-transform: translate(2px, 5px);
	-ms-transform: translate(2px, 5px);
	-o-transform: translate(2px, 5px);
	transform: translate(2px, 5px);

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.selected .section {
	max-width: 580px;
	float: left;
}

.section h2 {
	position: relative;
	color: #fff;
	text-align: left;
	margin: 0;

	-webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.75), 0 -15px 15px -15px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.75), 0 -15px 15px -15px rgba(0, 0, 0, 0.75);
	box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.75), 0 -15px 15px -15px rgba(0, 0, 0, 0.75);
}

.section label {
	display: block;
	padding: 20px 20px 20px 60px;
}

.section h2 span {
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -10px;

	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
}

.section input:checked ~ h2 span::after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;

	background: #fff;

	position: absolute;
	top: 2px;
	left: 2px;
}

.section_contents {
	overflow: hidden;
	max-height: 0;

	-webkit-transition: max-height 300ms ease-in-out;
	-moz-transition: max-height 300ms ease-in-out;
	-ms-transition: max-height 300ms ease-in-out;
	-o-transition: max-height 300ms ease-in-out;
	transition: max-height 300ms ease-in-out;
}

.section input:checked ~ .section_contents { max-height: 100%; }

.icons {
	display: inline-block;
	font-size: 0;
}

button .icons {
	position: absolute;
	bottom: -20px;
	right: -20px;
}

.icons span {
	position: relative;

	display: inline-block;
	vertical-align: middle;
	min-width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #31c1e7;
	padding: 0 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;

	font-weight: bold;
	font-size: 27px;
	color: #fff;

	-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

button .icons span ~ span { margin-left: 7px; }

.icons .overtime
, .icons .outstanding {
	font-size: 0 !important;
	padding: 0;
}

.icons .overtime::after {
	content: '';
	display: inline-block;
	width:  28px;
	height: 28px;

	position: absolute;
	top: 50%;
	left: 50%;

	background: no-repeat center center url('/Content/icon_clock.svg');
	-webkit-background-size: contain;
	   -moz-background-size: contain;
	    -ms-background-size: contain;
	     -o-background-size: contain;
	        background-size: contain;

	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.info .icons .overtime::after {
	width:  18px;
	height: 18px;
}

.icons .outstanding::after {
	content: '!';
	font-size: 29px;
}

.info .icons .outstanding::after { font-size: 1.2rem; }

.info { line-height: 60px; }
.info > * { vertical-align: middle; }
.info > label {
	line-height: 60px;
	color: #fff;
	font-size: 20px;
	margin: 0 5px 0 20px;
}

.info .dropdown {
	width: 120px;
	background-color: #fff;
	border: 0;
	text-align: left;
	margin-left: 10px;
}

.info #alc_button {
	position: relative;
	text-transform: none;
	font-size: 0;
	line-height: 50px;
	height: 50px;
	width: 50px;
	vertical-align: middle;
	margin-left: 10px;
	display: inline-block;
	float: none;

	background: center center no-repeat url('/Content/icon_alcohol.png');
	-webkit-background-size: 70%;
	-moz-background-size: 70%;
	-ms-background-size: 70%;
	-o-background-size: 70%;
	background-size: 70%;
}

@media (max-width: 768px) {
	.info .dropdown { margin-left: 5px; }
	.info #alc_button {
		margin-left: 5px;
		line-height: 40px;
		height: 40px;
		width: 40px;
	}
}

.info #alc_button:hover {
	opacity: 0.8;
	text-decoration: none;
}
.info #alc_button:active { line-height: 32px; }

.info #alc_button::after
, .info #alc_button::before {
	content: '';
	position: absolute;
	opacity: 0;

	-webkit-transition: opacity 300ms ease-in-out;
	-moz-transition: opacity 300ms ease-in-out;
	-ms-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}

.info #alc_button.alc_disabled::after
, .info #alc_button.alc_disabled::before { opacity: 1; }

.info #alc_button::after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 5px #31c1e7 solid;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.info #alc_button::before {
	top: 5px;
	left: 50%;
	bottom: 5px;
	width: 5px;
	margin: -2px;
	background: #31c1e7;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

span.green {
	background: #4cff00;
	color: #000;
}

span.yellow {
	background: #ffd800;
	color: #000;
}

span.orange {
	background: #ff6a00;
	color: #fff;
}

span.red {
	background: #ff0000;
	color: #fff;
}

span.dark_red {
	background: #aa0000;
	color: #fff;
}

span.black {
	background: #000;
	color: #fff;
}

.order_table {
	float: right;
	background-color: rgba(255, 255, 255, 0.25);
}

.order_table, .order_table table {
	border-spacing: 0;
	width: 100%;
	max-width: 400px;
}

.order_table th, .order_table td {
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	text-align: center;
	padding: 3px 6px;
}

.order_table { font-size: 20px; }
.order_table .item > td {
	padding: 10px 0;
	-webkit-box-shadow: inset 0 -5px 5px -5px rgba(0, 0, 0, 0.5), inset 0 5px 5px -5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset 0 -5px 5px -5px rgba(0, 0, 0, 0.5), inset 0 5px 5px -5px rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 -5px 5px -5px rgba(0, 0, 0, 0.5), inset 0 5px 5px -5px rgba(0, 0, 0, 0.5);
	background-color: rgba(255, 255, 255, 0.1);
}
.order_table tr:not(.open) + .item { display: none; }
.order_table .item tr:last-child td { border: none; }
.order_table .item table th, .order_table .item table td { border-color: rgba(0, 0, 0, 0.25); }

.order_table .item p { font-size: 14px; }
.order_table .item p ~ p { margin-top: 5px; }

.order_table td:last-child:not(:first-child)
, .order_table th:last-child:not(:first-child) { text-align: right; }
.order_table td:first-child:not(:last-child)
, .order_table th:first-child:not(:last-child) { text-align: left; }

.order_table tbody .time {
	-webkit-transition: all 2s ease-in-out;
	-moz-transition: all 2s ease-in-out;
	-ms-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;

	display: inline-block;
	padding: 2px 5px;
}

.order_table tbody a {
	display: inline-block;
	width: 41px;
	text-align: center;
	line-height: 41px;

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

	background-color: #b4252d;
	color: #fff;

	-webkit-transition: background-color 300ms ease-in-out;
	-moz-transition: background-color 300ms ease-in-out;
	-ms-transition: background-color 300ms ease-in-out;
	-o-transition: background-color 300ms ease-in-out;
	transition: background-color 300ms ease-in-out;
}

.order_table tbody a:hover { background-color: #c73b42; }
.order_table tbody a:active {
	line-height: 43px;
	height: 41px;
}

.order_table tbody:not(:empty) ~ .no_orders { display: none; }

.no_orders td {
	font-size: 30px;
	font-weight: 900;
	color: #bbb;
	padding: 100px 0;
}

.expand:hover
, .collapse:hover { text-decoration: none; }
.expand::after { content: '+'; }
.collapse::after { content: '-'; }

.r { text-align: right !important; }
.l { text-align: left !important; }

.controls {
	margin: 40px auto 0 auto;
	max-width: 768px;
	text-align: right;
}

.controls button:disabled { cursor: default; }

#manager_modal > div {
	width: 460px;
	height: 260px;
}

#manager_modal p { margin-bottom: 20px; }

#manager_modal .footer {
	margin-top: 20px;
	text-align: right;
}

#manager_modal input[type=password] {
	border: 1px solid #77787a;
	width: 100%;
	height: 49px;
	padding: 0 10px;

	font-family: Roboto, sans-serif;
	font-weight: 300;
	font-size: 20px;
}

.modal h1 {
	line-height: normal;
	text-align: left;
}

@media (max-width: 1100px) {
	.order_table {
		float: none;
		width: 100%;
		margin: 40px auto 0 auto;
	}

	.selected .section {
		float: none;
		max-width: 100%;
	}
	.section_contents { text-align: center; }
}