body, html {
	padding: 0;
	margin: 0;
	height: 100%;
}

#app {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	height: 100%;
}

.app-img-header {
	max-height: 32px !important;
	margin-top: 2px
}

.app-img-md {
	margin-top: 15px;
	max-height: 3.5em;
	z-index: 5000;
	position: relative;
}

#app .app-img-md {
	position: absolute;
	top: 0;
}

#app .overlay {
	z-index: 30000;
	position: fixed;
	right: 0px;
	top: 0px;
}

.bottom-bar {
	position: fixed;
	bottom: 0px;
	width: 100%;
	margin: auto
}

.cameras ul {
	padding: 0px;
}

.cameras ul {
	list-style: none;
}

.cameras .active {
	font-weight: bold;
	color: #009900;
}

.cameras a {
	color: #555;
	text-decoration: none;
	cursor: pointer;
}

.cameras a:hover {
	text-decoration: underline;
}

.scans li {
	padding: 10px 20px;
	border-bottom: 1px solid #ccc;
}

.scans-enter-active {
	transition: background 3s;
}

.scans-enter {
	background: yellow;
}

.empty {
	font-style: italic;
}

#preview {
	z-index: 0;
    display: none;
    min-width: 100%;
    min-height: 100%;
}

#preview.active {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-size: 100% 100%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}

.camera-button {
	width: 50px;
	margin-top: 16px;
}

.camera-button .camera-selection {
	border: 1px solid #105d21;
	border-radius: 3px;
	padding: 8px;
	width: 44px;
	background-color: rgba(255, 255, 255, 0.4);
}

.camera-button .camera-selection {
	width: 50px
}

#scan-anim {
	z-index: 10000;
	width: 80%;
	position: absolute;
	left: 10%;
	animation-name: scale;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

#scan-anim .redline{
	width: 100%;
	height: 4px;
	background-color: #696FA7;
}

@keyframes scale {
	0%  { top: 15%; }
	50% { top: 80%; }
	100% { top: 15% }
}
