html {
	height: 100vh;
}
body {
	height: 100%;
}

#app {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mb_hide {
	display: none;
}

header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #3b3d3a;
	padding: 0.5rem 1rem;
	color: #fff;
	font-size: 0.9rem;
}

#wrapper {
	display: flex;
	height: 100%;
	overflow-y: auto;
}

#sidebar {
	position: fixed;
  z-index: 999;
	transition: 0.5s;
	right: -90%;
	width: 90%;
	background-color: #ecf1f4;
	min-height: 100%;
	padding: 1rem;
	border-right: 1px #ccc solid;
	nav {
		> ul {
			li {
				border-bottom: 1px #ccc solid;
				> a,
				> span {
					position: relative;
					display: block;
					padding: 1rem;
				}
				> a:hover,
				> span:hover {
					cursor: pointer;
					background-color: #fff;
					transition: 0.3s;
				}
				> span::after {
					position: absolute;
					font-family: 'Font Awesome 6 Free';
					content: '\f078';
					font-weight: 900;
					right: 0.5rem;
				}
				> a::after {
					position: absolute;
					font-family: 'Font Awesome 6 Free';
					content: '\f054';
					font-weight: 900;
					right: 0.5rem;
				}
				ul {
					> li {
						border-top: 1px #ccc solid;
						border-bottom: none;
						> a {
							border-left: 0.5rem #bec7cc solid;
							background-color: #f5f6f6;
						}

						> a:hover {
							cursor: pointer;
							background-color: #fff;
							transition: 0.3s;
						}
					}
				}
			}
		}
	}
}
.menu_active {
	right: 0 !important;
}

.select_area {
	position: relative;
	select {
		width: 100%;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
}
.select_area::after {
	position: absolute;
	display: inline-block;
	font-family: infonix;
	content: '\f107';
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
}
main {
	background-color: #f5f7f9;
	flex: 1;
	padding: 1rem;
	overflow-y: auto;
	.section {
		padding: 0.5rem 0;
		> .section_inner {
			background-color: #fff;
			border-top: 2px #ddd solid;
			border-bottom: 1px #ddd solid;
			border-left: 1px #ddd solid;
			border-right: 1px #ddd solid;
			padding: 0.5rem;
		}
	}
}
footer {
	width: 100%;
}

.table_area {
	overflow-x: scroll;
	> table {
		white-space: nowrap;
	}
}

.detail_area {
	> .two_column {
    width: 100%;
	}
}

.qrcode-stream-container{
  aspect-ratio: 3 / 4;
}
