@charset "UTF-8";
/* Lato Regular */
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Regular.eot");
    src: url("fonts/Lato-Regular.eot?#iefix") format('embedded-opentype'),
         url("fonts/Lato-Regular.woff2") format('woff2'),
         url("fonts/Lato-Regular.woff") format('woff'),
         url("fonts/Lato-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}
/* Lato Italic */
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Italic.eot");
    src: url("fonts/Lato-Italic.eot?#iefix") format('embedded-opentype'),
         url("fonts/Lato-Italic.woff2") format('woff2'),
         url("fonts/Lato-Italic.woff") format('woff'),
         url("fonts/Lato-Italic.ttf") format('truetype');
    font-weight: 400;
    font-style: italic;
}
/* Lato Bold */
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Bold.eot");
    src: url("fonts/Lato-Bold.eot?#iefix") format('embedded-opentype'),
         url("fonts/Lato-Bold.woff2") format('woff2'),
         url("fonts/Lato-Bold.woff") format('woff'),
         url("fonts/Lato-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* Lato Bold Italic */
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-BoldItalic.eot");
    src: url("fonts/Lato-BoldItalic.eot?#iefix") format('embedded-opentype'),
         url("fonts/Lato-BoldItalic.woff2") format('woff2'),
         url("fonts/Lato-BoldItalic.woff") format('woff'),
         url("fonts/Lato-BoldItalic.ttf") format('truetype');
    font-weight: 700;
    font-style: italic;
}
/* Lato Black */
@font-face {
    font-family: "Lato";
    src: url("fonts/Lato-Black.eot");
    src: url("fonts/Lato-Black.eot?#iefix") format('embedded-opentype'),
         url("fonts/Lato-Black.woff2") format('woff2'),
         url("fonts/Lato-Black.woff") format('woff'),
         url("fonts/Lato-Black.ttf") format('truetype');
    font-weight: 900;
    font-style: normal;
}

body, html {
    height: 100%;
    font-family: 'Lato';
    background: #0a0a0c;
}
/* WELCOME SCREEN */
.dmclosed{
	color:#fff;
}
.welcome-screen-left-row {
	background: url('../images/welcome.png') no-repeat left center #feb10b;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 5;
    border-bottom: 5px solid #000;
}
.welcome-screen-right-row {
	background: #feb10b;
	height: 100%;
	width: 100%;
	position: fixed;
	right: 0;
	top: 0;
}

.welcome-above-message {
	z-index: 5;
	position: absolute;
	top: 35%;
	left: 20%;
	width: 100%;
	max-width: 70%;
}
.welcome-above-message h2, h3 {
	font-weight: 300;
	color: rgba(245,245,245,.8);
}
.welcome-above-message h2 {
	line-height: 5rem;
	font-size: 110px;
	font-weight: 900;
	color: rgba(245,245,245,.8);
}
.welcome-above-message h3 {
	text-indent: 5px;
	font-size: 55px;
}
.touch-screen {
	position: fixed;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
.press-to-start {
	position: absolute;
	left: 20%;
	bottom: 30%;
	z-index: 100;
}
.press-to-start a {
	display: flex;
	width: 53%;
	background: rgba(118, 25, 20,1);
	padding: 1.5rem 10rem 1.5rem 5rem;
	font-size: 35px;
	position: relative;
	border-radius: 1rem;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: inset 0 0 0 5px rgba(255,255,255,.95),
	0 40px 10px -30px rgba(0,0,0,.3);
	-moz-box-shadow: inset 0 0 0 5px rgba(255,255,255,.95),
	0 40px 10px -30px rgba(0,0,0,.3);
	-webkit-box-shadow: inset 0 0 0 5px rgba(255,255,255,.95),
	0 40px 10px -30px rgba(0,0,0,.3);
	transform: translate(0,0);
}
.press-to-start a:active {
	font-size: 34px;
	box-shadow: inset 0 0 0 5px rgba(255,255,255,.95),
	0 40px 10px -40px rgba(0,0,0,.3);
	-moz-box-shadow: inset 0 0 0 5px rgba(255,255,255,.95),
	0 40px 10px -40px rgba(0,0,0,.3);
	-webkit-box-shadow: inset 0 0 0 5px rgba(255,255,255,.95),
	0 40px 10px -40px rgba(0,0,0,.3);
	transform: translate(0rem,.5rem) scale(.95,.95);
}



@keyframes zoomin {
	0% {
		right: 5rem;
		opacity: .5;
	}
	100% {
		right: 3rem;
		opacity: 1;
	}
}
@-moz-keyframes zoomin {
	0% {
		right: 5rem;
		opacity: .5;
	}
	100% {
		right: 3rem;
		opacity: 1;
	}
}
.zoom-arrow:after {
	content: "\279C";
	position: absolute;
	animation: zoomin 1s infinite ease-in-out;
	animation-fill-mode: both;
	animation-direction: alternate;

	top: 0%;
	height: 100%;
	z-index: 1000;
	font-size: 65px;
}

.logo {
	position: fixed;
 	top: 33%;
 	left: 18%;
 	background: rgba(254,177,11,1);
 	border-radius: 100%;
 	height: 350px;
 	width: 350px;
 	text-align: center;
 	line-height: 300px;
 	box-shadow:  -10px 0 0 -1.5px rgba(255,255,255,1);
 	-moz-box-shadow:  -10px 0 0 -1.5px rgba(255,255,255,1);
 	-webkit-box-shadow:  -10px 0 0 -1.5px rgba(255,255,255,1);
}
.logo img {
	width: 300px;

}
.welcome-screen {

}

/* END WELCOME SCREEN */




/* CATEGORY SCREEN */
/*.categories, .items {
	content: attr('next-page');
}*/

.k-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	grid-gap: .5rem;
}
.k-cols {
	justify-content: center;
	position: relative;
	height: 150px;
	text-align: center;
	border: 3px solid rgba(255,255,255,.5);
	border-radius: .8rem;
}
.k-cols:active {
	transform: translate(0,.2rem) scale(.95,.95);
}
.k-cols .k-links {
	display: flex;
	height: 100%;
	width: 100%;
	background-size: cover;
	border-radius: .6rem;
	text-align: center;

}
.k-cols .k-links:after {
	background: rgba(0,0,0,.1);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: .6rem;
}
.k-name, .k-item-name  {
	position: absolute;
	bottom: 0;
	font-weight: 600;
	border-top: 3px solid rgba(255,255,255,.6);
	width: 100%;
	height: 55px;
	padding: 0 .2rem;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1.2rem;
	background: rgba(118, 25, 20,1);
	color: #fff;
	border-bottom-right-radius: .6rem;
	border-bottom-left-radius: .6rem;
	z-index: 5;
	display: flex;
	justify-content: center;
}
.k-center {
	align-self: center;
	font-size: 14px;
	line-height: 1rem;
}
/* END CATEGORY SCREEN */

/* ITEMS SCREEN */
.btn-display {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
	grid-gap: 1rem;
	justify-content: center;
}
/* link */
.prev-btn {
	background: rgba(255,255,255,.2);
	color: #000;
	border: 4px solid rgba(255,255,255,.5);
	border-radius: 1rem;
	text-align: center;
	position: relative;
	padding: .5rem 1rem .5rem 1rem;
	font-size: 25px !important;
	font-weight: 600;
	text-decoration: none;
}
.prev-btn .fa-arrow-circle-left {
	font-size: 35px;
	vertical-align: top;
}
.k-item-price {
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(0,0,0,.9);
	width: 40%;
	font-size: 18px;
	color: #fff;
	border-top-right-radius: .6rem;
	border-bottom-left-radius: .6rem;
	font-weight: 600;
}
/* END ITEMS SCREEN */
.k-page-name {
	display: flex;
	justify-content: center;
	margin: 0 0 .5rem 0;
}
.k-page-name span {
	border-top-right-radius: .6rem;
	font-size: 35px;
	font-weight: 600;
	color: rgba(255,255,255,1);
	text-shadow: 3px 3px .5px rgba(0,0,0,.6);
}
@media (max-width: 678px) {
    .k-page-name span {
    	font-size: 20px;
    }
}
/* SHORT LIST */
.k-addons {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(100px,1fr));
	grid-gap: .2rem;
    margin-bottom: 1rem;
}
.k-addons label {
	width: 100%;
	position: relative;
}
.k-addons-span {
	position: relative;
	height: 100px;
	border: 2px solid rgba(118, 25, 20,1);
	display: flex;
	text-align: center;
	border-radius: .6rem;
	background: rgba(255,255,255,1);
}
@keyframes scaling {
	0% {
		transform: scale(.75,.75);
	}

	100% {
		transform: scale(1.05,1.05);
	}
}
.k-addons label input[type="checkbox"],
.k-addons label input[type="radio"] {
	position: absolute;
	top: 1rem;
	left:  1rem;
	z-index: -1;
}
.k-addons label input[type="checkbox"]:checked + .k-addons-span,
.k-addons label input[type="radio"]:checked + .k-addons-span  {
	animation: scaling .2s cubic-bezier(0.5, 0.8, 0.2, 2);
	animation-fill-mode: both;
}
.k-addons label input[type="checkbox"]:checked + .k-addons-span,
.k-addons label input[type="radio"]:checked + .k-addons-span {
	border: 1px solid #37ae48;
}
.k-addons label input[type="checkbox"]:checked + .k-addons-span .k-addons-price-span:after,
.k-addons label input[type="radio"]:checked + .k-addons-span .k-addons-price-span:after {
	content: "(YES)";
	margin-left: .25rem;
	font-weight: 400;
}

.k-addons label input[type="checkbox"]:checked + .k-addons-span .k-addons-no-price-span:after,
.k-addons label input[type="radio"]:checked + .k-addons-span .k-addons-no-price-span:after {
	position: absolute;
	content: "YES";
	top: 1px;
	width: 100%;
	left: 0;
	background: #37ae48;
}

.k-addons label input[type="checkbox"]:checked + .k-addons-span .k-addons-price-span,
.k-addons label input[type="radio"]:checked + .k-addons-span .k-addons-price-span,
.k-addons label input[type="checkbox"]:checked + .k-addons-span .k-addons-no-price-span,
.k-addons label input[type="radio"]:checked + .k-addons-span .k-addons-no-price-span {
	/*top: -.9rem;
	left: -.8rem;
	position: absolute;
	font-size: 45px;*/
	color: #fff;
	/*text-shadow: 1px 2px .5px rgba(0,0,0,1);
	font-weight: 800;*/
	background: #37ae48;
	border-radius: 8px;
	/*width: 35px;
	height: 35px;
	line-height: 35px;*/
	/*border: 2px solid rgba(118, 25, 20,1);*/
	/*z-index: 1;*/
}
.k-addons-name-span {
	width: 100%;
	position: absolute;
	top: .5rem;
	left: 0;
	line-height: 1rem;
	font-size: 14px;
	font-weight: 600;
	z-index: 5;
}
.k-addons-price-span:after {
	content: "(NO)";
	font-weight: 400;
	margin: 0 0 0 .25rem;
}
.k-addons-price-span {

	width: 100%;
	background: rgba(118, 25, 20,1);
	position: absolute;
	bottom: 0;
	left: 0;
	border-top-left-radius: .8rem;
	border-top: 1px solid rgba(255,255,255,.5);
	color: rgba(255,255,255,1);
	font-weight: 600;
	padding-top: .3rem;
}
.k-addons-no-price-span {
	width: 100%;
	background: rgba(118, 25, 20,1);
	position: absolute;
	bottom: 0;
	left: 0;
	border-top-left-radius: .8rem;
	/*border-top: 1px solid rgba(255,255,255,.5);*/
	color: rgba(255,255,255,1);
	font-weight: 600;
	padding-top: .9rem;
	padding-bottom: .9rem;
}
.k-addons-no-price-span:after {
	display: flex;
	justify-content: center;
	padding: .1rem;
	width: 100%;
	background: rgba(118, 25, 20,1);
	content: "NO";
	position: absolute;
	top: 1px;
	left: 0;
	border-radius: 1rem;
}
/* END SHORT LIST */

/* RECEIPT RIGHT COLUMN */

.k-receipt-block {
	position: relative;
	height: 100%;
	padding: 0 0 0 0;
	display: flex;
	margin-top: .1rem;
}
.k-receipt-block .k-receipt {
	height: 100%;
	max-height: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	background: rgba(255,255,255,1);
	border-bottom: 1px dashed #feb10b;
	padding: .5rem 1rem 2rem 1rem;
}
.k-receipt .k-receipt-table, .k-receipt-table-item-name {
	width: 100%;
}
.k-receipt .k-receipt-table tr td, .k-receipt .k-receipt-table-item-name tr td {
	padding: 0;
}
.k-receipt .k-receipt-table .k-receipt-table-item, .k-receipt-table-item-name .k-receipt-table-item {
	font-weight: 600;
	font-size: 20px;
}
.k-receipt .k-receipt-table .k-receipt-table-item-price, .k-receipt-table-item-name .k-receipt-table-item-price {
	text-align: right;
	font-weight: 600;
	font-size: 20px;
}
.k-receipt .k-receipt-table .k-receipt-table-addon {
	text-indent: 1rem;
}
.k-receipt .k-receipt-table .k-receipt-table-addon-price {
	font-size: 14px;
	text-align: right;
}
.k-receipt-total {
	/*background: url('../images/receipt-bottom.png') repeat-x bottom center #fff;*/
	background: #fff;
	padding-top: .5rem;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	position: relative;
	box-shadow: 0 35px 25px -35px rgba(0,0,0,.5);
}
.k-receipt-total:after {
	position: absolute;
	bottom: -.60rem;
	left: 0;
	right: 0;
	height: 10px;
	content: "";
	background: #fff;

 	clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%,
 	50% 0%, 55% 100%, 60% 0%, 65% 100%,70% 0%, 75% 100%,80% 0%,85% 100%, 90% 0%, 95% 100%, 100% 0%);

 	-webkit-clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%,
 	50% 0%, 55% 100%, 60% 0%, 65% 100%,70% 0%, 75% 100%,80% 0%,85% 100%, 90% 0%, 95% 100%, 100% 0%);
}

.k-receipt-total table {
	width: 100%;
}

.k-receipt-total table tr td {
	font-weight: 600;
}
.k-receipt-total table tr td:last-child {
	text-align: right;
}
.k-receipt-total table .k-receipt-order-total {
	font-size: 25px;
}
.k-receipt-max-height {
	height: 70%;
}
/* END RECEIPT RIGHT COLUMN */

/* K MAX HEIGHT */
.k-max-container-height {
	height: 100%;

}
.k-max-height {
	height: 75%;
}
.k-receipt-btn-links a {
	text-decoration: none;
}
.k-receipt-btn-links a:hover {
	text-decoration: none;
}
/* END K MAX HEIGHT */
.k-receipt-btn-links {
	display: flex;
}
.mobile-btn-container {
	display: none;
}
.mobile-receipt-btn {
	display: none;
}
.menu-receipt-continer {
	display: inline-block;
	width: 100%;
}
.menu-receipt-container, .menu-receipt {
	width: 100%;
	height: 100%;
}
.close-mobile-receipe {
	display: none;
}
@media screen and (max-width: 991px) {
	.h-sm-75 {
		height: 75% !important;
	}
	@keyframes mrc {
		0% {
			transform: translate(0,-20);
			opacity: 0;
		}
		100% {
			transform: translate(0,20px);
			opacity: 1;
		}
	}
	.close-mobile-receipe {
		position: fixed;
		display: block;
		top: 0;
		left: 0;
		width: 100%;
		padding: 1rem;
		background: #000;
		z-index: 20;
		text-align: right;
	}
	.close-mobile-receipe .close-receipt {
		border: none;
		font-weight: bold;
	}
	.menu-receipt-container {
		position: fixed;
		overflow: scroll;
		display: none;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 50;
		padding: 2.5rem 1rem;
	}
	.menu-receipt-container:after {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background: rgba(0,0,0,.75);
		z-index: -1;
	}
	.menu-receipt {
		animation: mrc .2s linear;
		animation-fill-mode: both;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		z-index: 9999;
		align-self: center;
	}
	.k-receipt-max-height {
		min-height: 200px;
	}
	.k-receipt-total {
		border-top: 1px dashed #1a1a1a;
		box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
		-moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
		-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
	}
	.k-max-container-height {
		padding-bottom: 65rem;
	}
	/* hides desktop menu buttons on mobile */
	.k-receipt-btn-links {
		display: none;
	}
	.mobile-btn-container {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		justify-content: space-between;
		z-index: 10;
		border-top: 2px solid #fff;
		box-shadow: 0 -5px 20px 0 rgba(0,0,0,.15);
		-moz-box-shadow: 0 -5px 20px 0 rgba(0,0,0,.15);
		-webkit-box-shadow: 0 -5px 20px 0 rgba(0,0,0,.15);
	}
	.mobile-btn-container button.mobile-btn {
		flex: 1;
		padding: .75rem;
		text-align: center;
		font-weight: 700;
		font-size: 16px;
		border: none;
		outline: none;
	}
	.m-add-more {
		color: #fff;
		background: #fd7e14;
	}
	.m-edit-order {
		color: #fff;
		background: #dc3545;
	}
	.m-cart {
		color: #fff;
		background: #28a745;
	}
	.mobile-receipt-btn {
		position: fixed;
		bottom: 58px;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		z-index: 9;
	}
	.mobile-receipt-btn button {
		background: #fff;
		box-shadow: 0 0px 10px 0px rgba(0,0,0,.25);
		-moz-box-shadow: 0 0px 10px 0px rgba(0,0,0,.25);
		-webkit-box-shadow: 0 0px 10px 0px rgba(0,0,0,.25);
		border: 1px solid #28a745;
		padding: .75rem 1.5rem;
		border-radius: 50px;
		font-weight: 700;
		color: #28a745;
		outline: none;
	}
	.mobile-receipt-btn button .mobile-order-total {
		font-size: 20px;
		font-weight: 600;
	}
}
@media screen and (max-width: 579px) {
	.k-max-container-height {
		padding-bottom: 80rem;
	}
}
@media screen and (max-width: 391px) {
	.k-max-container-height {
		padding-bottom: 160rem;
	}
}
.k-btn {
	padding: 1.4rem 0;
	text-align: center;
	display: block;
	font-weight: 600;
	border-radius: .6rem;
	font-size: 18px;
}
.k-btn-sm {
	font-size: 14px;
	padding: .8rem .5rem;
}
.align-center {
	align-self: center;
}
.k-btn span {
	font-size: 12px;
}
.k-btn-red {
	background: rgba(118, 25, 20,1);
	color: #fff;
	align-self: center;
}
.k-btn-light {
	background: rgba(255,229,154,1);
	color: #fff;
	align-self: center;
	color: rgba(118,25,20,1);
	font-weight: 800;
}

.k-checkout-btn {
	background: #37ae48;
	color: #fff;
	font-weight: 700;
	-webkit-box-shadow: inset 0 0 0 2px rgb(9, 82, 19);
	box-shadow: inset 0 0 0 2px rgb(9, 82, 19);
}


.k-back-o-btn img:active {
	animation: scaling .2s ease-in-out;
	animation-fill-mode: both;
}

/* CHOOSE PAY OPTION */
.k-pay-option {
	display: flex;
	justify-content: center;
	height: 100%;
	text-align: center;
}
.k-edit-btn {
	background: rgba(118,25,20,1);
	color: rgba(255,255,255,.9);
	margin-top: .5rem;
	text-decoration: none;
	font-size: 14px;
	padding: 1rem 1rem;
}
.k-edit-btn:hover {
	background: rgba(118,25,20,1);
	text-decoration: none;
}
.k-start-over {
	background: rgba(255,255,255,1);
	color: rgba(0,0,0,.9);
	margin-top: .5rem;
	text-decoration: none;
	font-size: 14px;
	padding: 1rem 1rem;
}
.k-start-over:hover {
	background: rgba(118,25,20,1);
	text-decoration: none;
}
.k-pay-option .k-pay-option-block {
	align-self: center;
	width: 100%;
}
.k-pay-option .k-pay-option-block .k-btn-red {

}
.k-btn-red .k-pay-option-span {
	padding: 2rem .5rem;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	align-self: center;
	font-size: 28px;
	font-weight: 800;
}
@media (max-width: 991px) {
    .k-btn-red .k-pay-option-span {
        padding: .5rem .3rem;
        font-size: 20px;
    }
}
.k-btn-red .k-eat-in-out-span {
	padding: 2rem .5rem;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	align-self: center;
	font-size: 28px;
	font-weight: 800;
}
.k-btn-eatinout {
	background: rgba(118,25,20,1);
}


.k-pay-option-block h3 {
	color: rgba(255,255,255,1);
	font-size: 55px;
	font-weight: 800;
	margin-top: 2rem;
	margin-bottom: 1rem;
	text-shadow: 5px 5px 0 rgba(0,0,0,.3);
	padding: .2rem 1rem;
	border-bottom: 1px solid #feb10b;
	position: relative;
	/*box-shadow: 0 40px 150px -25px rgba(255,255,255,1), 0 -40px 150px -30px rgba(255,255,255,1);*/
}
.k-pay-option-block h3:after {
	position: absolute;
	content: "";
	border-style: solid;
	border-width: 20px;
	border-color: #feb10b transparent transparent transparent;
	bottom: -40px;
	left: 48%;
}
.k-order-number h4 {
	font-weight: 800;
	color: rgba(118,25,20,1);
	font-size: 35px;
	padding: .8rem 0 2rem 0;
}
.k-order-number h4 span {
	border: 3px solid rgba(255,255,255,1);
	padding: 1rem;
	border-radius: 100%;
	letter-spacing: 1px;
}
.k-pay-option-block a {
	text-decoration: none;
}
.k-take-receipt {
	display: flex;
	justify-content: center;
	height: 100%;
	width: 100%;
	flex-direction: column;
	text-align: center;
}
.k-take-receipt .k-receipt-p {
	font-size: 25px;
	font-weight: 600;
	color: rgba(118,25,20,1);
}
.k-take-receipt .k-receipt-h2 {
	font-size: 35px;
	font-weight: 800;
	color: #fff;
	text-shadow: 3px 3px 1px rgba(0,0,0,.5);
}
.k-receipt-col-h3 {
	display: flex;
	justify-content: center;
}

.k-take-receipt .k-receipt-col-h3 .k-receipt-h3 {
	font-size: 30px;
	font-weight: 800;
	background: rgba(118,25,20,1);
	color: rgba(255,255,255,1);
	padding: 1rem 2rem;
	margin-top: 1rem;
	border-radius: 1rem;
	position: relative;
	box-shadow: 0 10px 25px 0px rgba(255,255,255,.5);
}
.k-receipt-col-h3 .k-receipt-h3:after {
	content: "";
	position: absolute;
	top: -2rem;
	left: 42%;
	border-color: transparent transparent rgba(118,25,20,1)  transparent;
	border-style: solid;
	border-width: 20px;
}
/* END CHOOSE PAY OPTION */

/* MORE TIME */
.more-time-overlay,
.start-over-overlay {
    display: none;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.more-time-container,
.start-over-container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    position: relative;
}
@keyframes more-time {
    0% {
        top: 0;
    }
    100% {
        top: 35%;
    }
}
@-moz-keyframes more-time {
    0% {
        top: 0;
    }
    100% {
        top: 35%;
    }
}
.more-time-block,
.start-over-block {
    animation: more-time .5s;
    animation-timing-function: cubic-bezier(0.1, 0.2, 0.2, 1.5);
    animation-fill-mode: both;
    position: absolute;
    align-self: center;
    text-align: center;
    background: rgba(255,255,255,1);
    border: 5px solid rgba(0,0,0,.3);
    padding: 3rem 5rem;
    border-radius: 1rem;
    box-shadow: 0 0 0px 10px rgba(255,255,255,.8),
    0 0 0px 20px rgba(0,0,0,.2);
}
.more-time-block h2,
.start-over-block h2 {
    margin-bottom: 1.5rem;
}
@keyframes p {
    0% {
        bottom: -10rem;
        opacity: 0;
    }
    100% {
        bottom: -3.3rem;
        opacity: 1;
    }
}
.more-time-block p,
.start-over-block p {
    background: rgba(118,25,20,1);
    color: #fff;
    position: relative;
    width: 45%;
    animation: p .5s cubic-bezier(0.1,0.1,0.3,2);
    animation-fill-mode: both;
    animation-delay: .5s;
    right: 3rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    position: absolute;
    box-shadow: 0 2px 0 2px rgba(255,255,255,1);
    font-weight: 600;
}
.more-time-block p:after,
.start-over-block p:after {
    position: absolute;
    content: "";
    top: -2rem;
    left: 43%;
    border-style: solid;
    border-width: 20px;
    border-color: transparent transparent  rgba(118,25,20,1) transparent;
}

.more-time-block .k-more-time-yes,
.start-over-block .k-start-over-yes{
    background: rgba(55,174,72,1);
    color: rgba(255,255,255,1);
    display: block;
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 25px;
    border-radius: 1rem;
}
.more-time-block .k-more-time-yes,
.more-time-block .k-more-time-no,
.start-over-block .k-start-over-yes,
.start-over-block .k-start-over-no {
    display: block;
    padding: 1.2rem 0;
    font-weight: 600;
    font-size: 25px;
    border-radius: 1rem;
    text-decoration: none;
}
.more-time-block .k-more-time-yes,
.start-over-block .k-start-over-yes {
    background: rgba(55,174,72,1);
    color: rgba(255,255,255,1);

}
.more-time-block .k-more-time-no,
.start-over-block .k-start-over-no {
    background: #feb10b;
    color: rgba(0,0,0,1);
    box-shadow: inset 0 0 0 5px rgba(0,0,0,.2);
}
/* END MORE TIME */

/* EDIT ITEM */
.k-edit-item-container {
	display: flex;
	flex-wrap: wrap;
}
.k-edit-item-block {
	background: rgba(255,229,154,1);
	padding: .2rem;
	margin-left: .5rem;
	margin-bottom: .5rem;

	/*border: 2px solid rgba(118,25,20,1);*/
	/*box-shadow: inset 0 0 50px 15px rgba(255,255,255,.5);*/
	-webkit-box-shadow: inset 0 0 0 1px rgba(118,25,20,1);
	box-shadow: inset 0 0 0 1px rgba(118,25,20,1);
	align-items: center;
	flex: 0 0 100%;
}
.k-edit-item-block h3 {
	color: #000;
	font-weight: 600;
	font-size: 20px;
}
.k-edit-item-block input[type="text"] {
	width: 40px;
	padding: .5rem;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	border: none;
	vertical-align: middle;
}
.k-edit-item-block .k-qty-minus, .k-edit-item-block .k-qty-plus {
	background: rgba(118,25,20,1);
	padding: .1rem .8rem .1rem  .8rem;
	font-size: 30px;
	color: #fff;
	vertical-align: middle;
}
.k-edit-item-block .k-qty-minus {
	border-top-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
}
.k-edit-item-block .k-qty-plus {
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
}
.k-edit-item-button-list {
	margin-top: 1rem;
}
.k-edit-item-button-list a {
	text-decoration: none;
	font-weight: 700;
}
.k-edit-item-button-list .k-btn-update {
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
	font-size: 25px;
}
.k-edit-item-button-list .k-btn-update .k-btn-update-span {
	font-size: 18px;
	font-weight: 300;
}
.k-edit-item-button-list .k-btn-exit img {
	transform: rotate(180deg);
}
.k-edit-item-button-list .k-btn-exit {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.k-edit-btn-block {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	margin: 3rem .5rem 0 .5rem;
}
.edit-areas {
	padding-left: 5px;
	padding-right: 10px;
}
/* END EDIT ITEMS */

/* EDIT PAGE */
.small-fonts {
	font-size: 14px;

}
.italic {
	font-style: italic;
}
/* END EDIT PAGE */

/* TIP */
.tip-container {
	margin-top: 1rem;
}
.tip-container label {
	position: relative;
	display: flex;
}
.tip-container label .tip-span-button {
	background: #37ae48;
	padding: 1rem;
	display: flex;
	flex: 0 0 100%;
	position: relative;
	
	box-shadow: inset 0 0 0 2px rgb(255,255,255,.95);
	-moz-box-shadow: inset 0 0 0 2px rgb(255,255,255,.95);
	-webkit-box-shadow: inset 0 0 0 2px rgb(255,255,255,.95);
	border-radius: 6px;
}
.tip-container label .tip-span-button .tip-span-content {
	align-self: center;
	flex: 0 0 100%;
	text-align: center;
	color: #fff;
	font-weight: 600;
}
.tip-container label input[type="radio"] {
	position: absolute;
	z-index: -1;
}
.tip-container label input[type="radio"]:checked + .tip-span-button {
	background: rgba(118,25,20,1);
	-webkit-box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
}
.tip-title {
	position: absolute;
	bottom: 0;
}
/* END TIP */

.add-more {
	-webkit-box-shadow: inset 0 0 0 2px rgba(118,25,20,1);
		box-shadow: inset 0 0 0 2px rgba(118,25,20,1);
}

/* KIOSK SLIDES */
@keyframes act {
	from { opacity: 0; }
	to { opacity: 100%; }
}
.active {
	display: block !important;
	animation: act .2s;
	animation-timing-function: cubic-bezier(.1,.95,.14,.55);
	animation-fill-mode: both;
}
.welcome-screen {
	display: none;
}

.right-slide-two {
	background: rgba(10,10,10,1);
	height: 100%;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
}
.welcome-message-right h3,
.welcome-message-right h2 {
    color: rgb(100,100,100,.9);
}
.welcome-right {
	background: url('../images/kiosk-lunch-img.jpg') no-repeat left center #feb10b;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 5;
    border-bottom: 5px solid #000;
}

.kiosk-slide-two .logo-right {
	position: fixed;
 	top: 33%;
 	right: 18%;
 	background: rgba(254,177,11,1);
 	border-radius: 100%;
 	height: 350px;
 	width: 350px;
 	text-align: center;
 	line-height: 300px;
 	box-shadow:  10px 0 0 1.5px rgba(255,255,255,1);
 	-moz-box-shadow:  10px 0 0 1.5px rgba(255,255,255,1);
 	-webkit-box-shadow:  10px 0 0 1.5px rgba(255,255,255,1);
}

.kiosk-slide-two .logo-right img {
	width: 300px;
}

.slide-two-logo-bg {
	background: rgba(10,10,10,1) !important;
	box-shadow:  8px 0 0 -1.5px rgba(255,255,255,.9) !important;
 	-moz-box-shadow:  8px 0 0 -1.5px rgba(255,255,255,.9) !important;
 	-webkit-box-shadow:  8px 0 0 -1.5px rgba(255,255,255,.9) !important;
}
/* END */


/* SCAN */
@keyframes scanaw {
	0% {
		height: 1rem;
	}
	100% {
		height: 1.6rem;
	}
}
-webkit-@keyframes scanaw {
	0% {
		height: 1rem;
		background: #fff;
	}
	100% {
		height: 1.5rem;
		background: rgba(118,25,20,1);
	}
}
.show-scan {
	height: 6rem !important;
	transition: height .5rem ease-in-out .1rem;
	-moz-transition: height .5rem ease-in-out .1rem;
	-webkit-transition: height .5rem ease-in-out .1rem;
}
.scanaw {
	animation: scanaw .5s infinite ease-in-out;
}
.scan-float {
	animation-fill-mode: both;
	animation-direction: alternate;
	position: fixed;
	left: 2rem;
	bottom: 0;
	background: rgba(255,255,255,1);
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 1rem;
	z-index: 9999;
	transition: height .5rem ease-in-out .1rem;
	-moz-transition: height .5rem ease-in-out .1rem;
	-webkit-transition: height .5rem ease-in-out .1rem;
}
.scan-float .scan-container-trigger {
	width: auto;
	background: rgba(118,25,20,1);
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	margin-top: -2rem;
	margin-left: -1rem;
	margin-right: -1rem;
	padding: .5rem;
	border-top-left-radius: .8rem;
	border-top-right-radius: .8rem;
	position: relative;
	text-indent: 3rem;
	box-shadow: 0 6px 8px -4px rgba(0,0,0,.5);
}
.scan-float .scan-container-trigger img {
	border-top-left-radius: .8rem;
	width: 65px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.scan-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.scan-field {
	flex: 0 0 100%;
}
.scan-text {
	flex: 0 0 100%;
}

.k-scan {
	margin-top: .5rem;
	background: rgba(255,255,255,1);
}
.k-scan .k-bar-icon {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	display: flex;
}
.k-scan .k-bar-icon img {
	width: 40px;
	align-self: center;
	margin-left: .3rem;
}
.k-scan .k-scan-input input[type="text"] {
	/*margin: 0 0 0 0;
	color: #000;
	border: none;
	font-weight: 600;
	letter-spacing: .2rem;
	border-radius: 0;*/
	width: 300px;
	z-index: -2;
	position: fixed;
	top: 0;
	left: 0;
}
/* END SCAN */
.desktopmenu {
	border-bottom: 5px solid #3c3c3c;
	position: relative;
	background: #feb10b !important;
}


.desktopmenu ul li a {
	font-weight: 600;
	color: #000 !important;
}

.desktopmenu .navbar-brand {
	position: absolute;
	right: 45%;
	left: 45%;
	top: 0;
	z-index: 5;
}

.pay-now-with {
    color: #fff;
    margin-bottom: .5rem;
    margin-top: -5rem;

}

.kiosk-closed {

	background: #dc3545;
	width: auto;
	max-width: 800px;
}
.kiosk-closed h1 {
	margin-bottom: 0;
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	color: #fff;
}

.kiosk-hours {

	width: auto;
	max-width: 800px;
	background: rgba(255,255,255,.85);
	padding: .75rem 1rem;
}
.kiosk-hours h1 {
	padding-top: .2rem;
	padding-bottom: .05rem;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-bottom: 0;
	font-weight: 600;
	color: #000;
}
.kiosk-hours h3 {
	padding-top: .5rem;
	padding-bottom: .05rem;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-bottom: 0;
	font-weight: 600;
	color: #000;
}
@media (max-width: 991px) {
    .pay-now-with {
        color: #fff;
        margin-bottom: .5rem;
        margin-top: -5rem;
    }
    .pay-now-with h1 {
        font-size: 35px !important;
    }
}

/* custom modal styling */
.modal-header-bg {
    background: #761914;
    color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.modal-title {
    font-weight: 700;
}
.modal-header-bg .close {
    color: #fff;
    font-weight: 300;
    font-size: 25px;
}
.desktopmenu-modal label {
    color: #000;
    font-weight: 700;
}

.desktopmenu-modal input {
    border: 1px solid #bbb;
}

.mobile-menu-logo {
	display: none;
}

@media (max-width: 991px) {
	.desktopmenu .navbar-brand {
		display: none;
	}
	.mobile-menu-logo {
		display: block;
	}
	.item-description  h2 {
		font-size: 18px;
	}
}