@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 {
	font-family: "Lato";
}
.kiosk-more-options {
	display: flex;
	justify-content: center;
	text-align: center;
	height: 100%;
	position: relative;
}
.kiosk-more-options #moreOptionsBtn {
	font-weight: 800;
	color: #fff;
	background: #0080ff; /* rgba(0,128,255,1) */
	-moz-box-shadow: inset 0 0 0 4px #046ad0;
	-webkit-box-shadow: inset 0 0 0 4px #046ad0;
	box-shadow: inset 0 0 0 4px #046ad0;
	padding-top: 1.35rem;
	padding-bottom: .8rem;
	border: 4px solid #fff;
	border-radius: 10px;
	width: 100%;
}


#kiosk-more-options span:hover {
	animation: moreOptions .3s ease-in-out;
	animation-fill-mode: both;
}
.no-scroll {
	overflow: hidden !important;
}
.scroll {
	overflow: scroll !important;
}
.kiosk-big-list-container {
	position: fixed;
	overflow: scroll;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #feb10b;
	z-index: 9900;
	padding-top: 6rem;
	display: none;
}
.big-list-header {
	background: #007bff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	-moz-display: flex;
	-webkit-display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	-moz-box-shadow: inset 0 -2px 0 0 #0755a9;
	-webkit-box-shadow: inset 0 -2px 0 0 #0755a9;
	box-shadow: inset 0 -2px 0 0 #0755a9;
}

.big-list-header .btn-container {
	display: flex;
	-moz-display: flex;
	-webkit-display: flex;
	flex-wrap: wrap;
}
.big-list-header .btn-container .header-btn {
	align-self: center;
}
.big-list-header .btn-container #bigListSave {
	background: #2ca704;
	font-weight: 600;
	color: #fff;
	padding: 1.5rem 3.5rem;
	text-align: center;
	-moz-box-shadow: inset 2px -2px 0 0 #0755a9;
	-webkit-box-shadow: inset 2px -2px 0 0 #0755a9;
	box-shadow: inset 2px -2px 0 0 #0755a9;
	font-size: 25px;
}
.big-list-header .header-name {
	padding: 1rem 1rem;
	font-size: 35px;
	font-weight: 400;
	color: #fff;
	align-self: center;
}
@media (max-width: 678px){
	.big-list-header .header-name {
		font-size: 18px;
	}
	.big-list-header .btn-container #bigListSave {
		padding: 1rem 2rem;
		font-size: 20px;
	}
	.k-bg-options .k-bg-radio-btn .k-bg-inner-container {
		display: grid;
		grid-gap: .2rem;
		grid-template-columns: repeat(2,1fr);
	}
}

.anim-big-list {
	animation: bigListCon .3s;
	animation-timing-function: cubic-bezier(.2,.2,.8,.8);
	animation-fill-mode: both;
	animation-direction: alternate;
	display: block;
}

/* Second Popup */
.k-bg-container {
	display: none;
	background: rgba(0,0,0,.9);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 500;
}
.k-option-show {
	display: block;
	animation: kBGAnim .2s;
	animation-timing-function: cubic-bezier(.1,.2,.8,.1);
}
.k-bg-options {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}
.k-bg-options .k-bg-radio-btn {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 600px;
	height: 400px;
	background: #fff;
	align-self: center;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 0 0 10px #f77144;
}

.k-bg-options .k-bg-radio-btn .k-bg-inner-container  {
	position: absolute;
	align-self: center;
}
.k-bg-options .k-bg-radio-btn .k-bg-inner-container label {
	padding: 0;
	margin: 0;
	position: relative;
}
.k-bg-options .k-bg-radio-btn .k-bg-inner-container label .k-bg-span {
	background: #007bff;
	padding: 1.2rem 3rem;
	flex: 0 0 100%;
	max-width: 120px;
	box-sizing: border-box;
	text-align: center;
	margin: 0;
	color: #fff;
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 3px rgba(0,0,0,.3);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	-moz-transition: box-shadow .3s linear .01s;
	-webkit-transition: box-shadow .3s linear .01s;
	transition: box-shadow .3s linear .01s;
}

.k-bg-options input[type="radio"] {
	position: absolute;
	z-index: -2;
}
.k-bg-options input[type="radio"]:checked + .k-bg-span {
	background: #2ca704;
	-moz-transition: box-shadow .3s linear .01s;
	-webkit-transition: box-shadow .3s linear .01s;
	transition: box-shadow .3s linear .01s;
	-moz-box-shadow: inset 0 0 0 150px rgba(44,167,4,.8);
	-webkit-box-shadow: inset 0 0 0 150px rgba(44,167,4,.8);
	box-shadow: inset 0 0 0 150px rgba(44,167,4,.8);
}
.k-bg-options input[type="radio"]:checked + .k-bg-span:after {
	content: "\2714";
	font-size: 60px;
	position: absolute;
	right: -10px;
	top: -35px;
	color: #f77144;
	-moz-text-shadow: 2px 1px 0 #000;
	-webkit-text-shadow: 2px 1px 0 #000;
	text-shadow: 2px 1px 0 #000;
}
.k-bg-header {
	background: #f77144;
	width: 100%;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	padding: .5rem 0;
	float: left;
	text-align: center;
	color: #fff;

	font-size: 25px;
	-moz-box-shadow: inset 0 -5px 0 0 rgba(204, 89,50, 1);
	-webkit-box-shadow: inset 0 -5px 0 0 rgba(4, 89,50, 1);
	box-shadow: inset 0 -5px 0 0 rgba(204, 89,50, 1);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.k-bg-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.k-bg-footer .k-cancel,
.k-bg-footer .k-done {
	background: #c8191a;
	padding: .8rem 0;
	flex: 0 0 50%;
	text-align: center;
	color: #fff;
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	box-sizing: border-box;
}
.k-bg-footer .k-cancel {
	background: #e13036;
	border-bottom-left-radius: 8px;
}
.k-bg-footer .k-done {
	background: #2ca704;
	border-bottom-right-radius: 8px;
}
.k-addon-span-option {
	border: 2px solid #055f00;
	background: #eeffe8;
}.k-addon-span-option .k-addons-name-span {
	color: #000;
}
.k-addon-span-option .k-addons-price-span,
.k-addon-span-option .k-addons-no-price-span {
	background: #055f00;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}
/* in receipt addon option */
.option-in-receipt {
	color: #1c6f00;
	font-weight: 600;
	font-size: 14px;
}
/* end */

/* keyframes */
@keyframes moreOptions {
	0% {
		-moz-transform: scale(1.05,05.05);
		-webkit-transform: scale(1.05,1.05);
		transform: scale(1.05,1.05);
	}
	30% {
		-moz-transform: scale(.90,.90);
		-webkit-transform: scale(.90,.90);
		transform: scale(.90,.90);
	}

	100% {
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}
@-webkit-keyframes moreOptions {
	0% {
		-moz-transform: scale(1.05,05.05);
		-webkit-transform: scale(1.05,1.05);
		transform: scale(1.05,1.05);
	}
	30% {
		-moz-transform: scale(.90,.90);
		-webkit-transform: scale(.90,.90);
		transform: scale(.90,.90);
	}

	100% {
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}

@keyframes bigListCon {
	0% {
		-moz-transform: scale(0,0);
		-webkit-transform: scale(0,0);
		transform: scale(0,0);
		-moz-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.7);
		-webkit-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.7);
		box-shadow: inset 0 0 10px 5px rgba(255,255,255,.7);
		border: 3px solid #000;
		opacity: .9;
	}
	60% {
		-moz-transform: scale(1.05,1.05);
		-webkit-transform: scale(1.05,1.05);
		transform: scale(1.05,1.05);
		-moz-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.7);
		-webkit-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.7);
		box-shadow: inset 0 0 3px 3px rgba(255,255,255,.7);
		opacity: .95;
	}
	100% {
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
		-moz-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		opacity: 1;
		border: none;
	}
}

@-webkit-keyframes bigListCon {
	0% {
		-moz-transform: scale(0,0);
		-webkit-transform: scale(0,0);
		transform: scale(0,0);
		-moz-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.6);
		-webkit-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.6);
		box-shadow: inset 0 0 10px 5px rgba(255,255,255,.6);
		border: 3px solid #000;
		opacity: .9;
	}
	60% {
		-moz-transform: scale(1.05,1.05);
		-webkit-transform: scale(1.05,1.05);
		transform: scale(1.05,1.05);
		-moz-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.6);
		-webkit-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.6);
		box-shadow: inset 0 0 3px 3px rgba(255,255,255,.65);
		opacity: .95;
	}
	100% {
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
		-moz-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		opacity: 1;
		border: none;
	}
}

@keyframes kBGAnim {
	0% {
		-moz-transform: scale(0,0);
		-webkit-transform: scale(0,0);
		transform: scale(0,0);
		-moz-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.7);
		-webkit-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.7);
		box-shadow: inset 0 0 10px 5px rgba(255,255,255,.7);
		border: 3px solid #000;
		opacity: .01;
	}
	60% {
		-moz-transform: scale(1.05,1.05);
		-webkit-transform: scale(1.05,1.05);
		transform: scale(1.05,1.05);
		-moz-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.7);
		-webkit-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.7);
		box-shadow: inset 0 0 3px 3px rgba(255,255,255,.7);
		opacity: .2;
	}
	100% {
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
		-moz-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		opacity: 1;
		border: none;
	}
}

@-webkit-keyframes kBGAnim {
	0% {
		-moz-transform: scale(0,0);
		-webkit-transform: scale(0,0);
		transform: scale(0,0);
		-moz-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.6);
		-webkit-box-shadow: inset 0 0 10px 5px rgba(255,255,255,.6);
		box-shadow: inset 0 0 10px 5px rgba(255,255,255,.6);
		border: 3px solid #000;
		opacity: .01;
	}
	60% {
		-moz-transform: scale(1.05,1.05);
		-webkit-transform: scale(1.05,1.05);
		transform: scale(1.05,1.05);
		-moz-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.6);
		-webkit-box-shadow: inset 0 0 3px 3px rgba(255,255,255,.6);
		box-shadow: inset 0 0 3px 3px rgba(255,255,255,.65);
		opacity: .2;
	}
	100% {
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
		-moz-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		box-shadow: inset 0 0 0 0 rgba(0,0,0,.8);
		opacity: 1;
		border: none;
	}
}


/* hidden checkbox that refreshes .add_addon table container */
.k-bg-container .clickit label,
.k-bg-container .clickit #clickit {
	position: absolute;
	display: none;
}
