:root {
	--gbpc-green: rgb(22, 200, 60);
	--gbpc-green-gradient: linear-gradient(90deg, rgba(128, 221, 66, 1) 0%, rgba(22, 200, 60, 1) 100%);
}

body {
	font-family: 'Nunito', sans-serif;
	color: #212121;
	overflow: hidden;
}

.textLight {
	color: #999999;
}

.bold {
	font-weight: bold;
}

div#LeftPanel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 240px;
	box-sizing: border-box;
	padding: 10px;
	z-index: 1;
	box-shadow: 0px 0px 17px -12px #646669;
}

div#MainContent {
	position: absolute;
	top: 0;
	left: 240px;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	overflow: auto;
	padding: 30px;
	padding-top: 0px;
	padding-left: 50px;
	background: #e4e7eb;
}

div#LeftPanel > div {
	padding: 14px 0px;
	display: flex;
	cursor: pointer;
	border-radius: 8px;
	margin-bottom: 10px;
	align-items: center;
	color: #bebfc1;
	position: relative;
}

div#LeftPanel > div i {
	margin-right: 9px;
}

div#LeftPanel > div.selected {
	color: var(--gbpc-green);
	/*background: linear-gradient(90deg, rgba(22,200,60,1) 0%, rgba(128,221,66,1) 100%);*/
	/* box-shadow: 0px 3px 7px -5px #555; */
}

div#LeftPanel div[data-view='pickups'] .count {
	position: absolute;
	right: 6px;
	top: 10px;
	font-size: 10px;
	border: 1px solid var(--gbpc-green);
	border-radius: 50%;
	width: 13px;
	height: 13px;
	display: grid;
	place-content: center;
	background: var(--gbpc-green);
	color: white;

	&.hidden {
		display: none;
	}
}

.mainSection {
	display: inline-block;
	margin: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 100%);
	border-radius: 15px;
	padding: 30px;
}

.smallMenu div#LeftPanel {
	width: 70px;
	font-size: 24px;
}

.smallMenu div#LeftPanel > div > div {
	display: none;
}

div#LeftPanel > div.selected:before {
	content: '';
	position: absolute;
	right: -5px;
	height: 8px;
	width: 8px;
	border-radius: 10px;
	background: var(--gbpc-green);
	border: 2px solid white;
}

.smallMenu div#MainContent {
	left: 70px;
}

.smallMenu div#LeftPanel > div i {
	margin: 0px;
}

.smallMenu div#LeftPanel > div {
	justify-content: center;
}

div#LeftPanel img {
	width: 30px;
	margin: 30px auto;
	display: block;
	margin-top: 15px;
}

.listWrapper {
	margin-top: 30px;
}

.kiosk {
	display: none;
}

.kiosk {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: white;
	z-index: 100;
}

/**************************
        Loading
***************************/
#LoadingScreen {
	position: fixed;
	z-index: 100;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
}

#LoadingScreen h3 {
	margin-bottom: -20px;
}

div#LoadingScreen img {
	height: 180px;
	animation: breathing 2s ease-out infinite normal;
}

div#LoadingScreen h5 {
	margin-top: -20px;
	color: #999;
}

div#LoadingScreen > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@-webkit-keyframes breathing {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	25% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	60% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

@keyframes breathing {
	0% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}

	25% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	60% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}
}
