body {
	background-color: #333;
}

select {
	position: absolute;
	top: 15px;
	left: calc(50vw - 150px);
	width: 302px;
	height: 30px;
	font-size: 14px;
}

video {
	position: absolute;
	top: 50px;
	left: calc(50vw - 150px);
}

input.input-box {
	background-color: #eee;
}

label {
	color: #eee;
}

#number {
	position: absolute;
	top: 400px;
	left: calc(50vw - 150px);
	width: 302px;
	height: 30px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #eee;
}

.number-input {
	width: 35px;
	height: 35px;
	margin: 3px;
}

.grid {
	display: grid;
	grid-template-columns: 75% 25%;
	border-bottom: 1px solid #333;
	margin-bottom: 2px;
}

.qty {
	text-align: center;
}

.photo-button {
	position: absolute;
	width: 100px;
	height: 100px;
	top: 470px;
	left: calc(50vw - 50px);
}

.circle {
	position: absolute;
	top: 12%;
	left: 12%;
	bottom: 12%;
	right: 12%;
	border-radius: 100%;
	background-color: #ffffff;
	opacity: 0;
}

.ring {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 100%;
	border: 0.5em solid #ffffff;
	opacity: 0.8;
}

.photo-button .circle, .photo-button .ring {
	transition: all 0.25s;
}

.photo-button:hover .circle {
	opacity: 1;
}

.photo-button:active .ring {
	opacity: 1;
}

.photo-button:active .circle {
	opacity: 0.5;
}

#popup, #sql {
	position: absolute;
	display: none;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #000;
}

#sql_buttons {
	position: absolute;
	top: 0px;
	right: 0px;
	color: #eee;
	padding: 10px;
	font-size: 22px;
	cursor: pointer;
}

#sql_buttons i {
	margin-left: 5px;
}

#sql_input {
	position: fixed;
	margin-top: 50px;
	width: 100%;
	height: 90%;
	overflow: scroll;
}

#xls {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}

#quantity_title {
	width: 100%;
	height: 30px;
	padding-top: 40px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #eee;
}

#quantity {
	width: 50vw;
	height: 30px;
	font-size: 16px;
	margin-left: 25vw;
	text-align: center;
}

.fa-arrow-alt-circle-left {
	position: absolute;
	top: 240px;
	left: 60px;
	font-size: 80px;
	color: #dc3545;
}

.fa-check-circle {
	position: absolute;
	top: 240px;
	right: 60px;
	font-size: 80px;
	color: #28a745;
}

.fa-arrow-alt-circle-left, .fa-check-circle {
	border-radius: 70px;
	border: solid 1px #000;
	animation: pulse 2s infinite;
}

.hidden {
	display: none;
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(143, 252, 255, 0.7);
		box-shadow: 0 0 0 0 rgba(143, 252, 255, 0.7);
	}
	70% {
		-moz-box-shadow: 0 0 0 30px rgba(143, 252, 255, 0);
		box-shadow: 0 0 0 30px rgba(143, 252, 255, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(143, 252, 255, 0);
		box-shadow: 0 0 0 0 rgba(143, 252, 255, 0);
	}
}
