body {
	overflow: hidden;
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	overflow: hidden;
}

#webcam-player {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: -10;
	object-fit: cover;
}

#verdict-canvas {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 66%;
	height: 50%;
	max-width: 250px;
}

#ios-capture-img {
	position: absolute;
	visibility: hidden;
}

.footer-btn-container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;

	display: flex;
	align-content: center;
	justify-content: center;
}

.white-border-btn {
	background: none;
	border: 1.2px white solid;
	border-radius: 10px;
	font-size: 20px; 
	color: white;
	padding: 10px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;
	pointer-events: auto;
	
	display: inline-block;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.white-border-btn > span {
	pointer-events: none;
}

.white-border-btn:active {
	animation-name: btn-click;
	animation-duration: 0.3s;
}

#save-btn {
	visibility: hidden;
}

#ios-save-btn {
	visibility: hidden;
	pointer-events: none;
}

#return-btn {
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 23px;
	height: 25px;
	width: 25px;
	visibility: hidden;
}

#lang-btn {
	position: absolute;
	top: 23px;
	right: 23px;
	height: 45px;
	width: 45px;
	border: 1.2px white solid;
	border-radius: 10px;
	font-size: 16px; 
	color: white;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;

	display: flex;
	align-items: center;
	justify-content: center;
}

#lang-btn:active {
	animation-name: btn-click;
	animation-duration: 0.3s;
}

#share-btn{
	position: absolute;
	top: 0;
	left: 0;
	height: 100px;
	width: 100px;
}

#error-view {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #3B4647;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#error-view > #error-view-message {
	color: white;
	text-align: center;
	vertical-align: center;
	font-size: 16px;
	line-height: 120%;
}

#error-view > #error-view-title {
	color: white;
	text-align: center;
	vertical-align: center;
	font-size: 28px;
	margin-bottom: 10px;
}

#android-intent-link {
	margin-top: 30px;
	text-decoration: none;
	display: none;
}

#show-permission-reset-guide-btn {
	background: none;
	border: none;
	color: white;
	text-decoration: underline;
	font-size: 12px;
	opacity: 0.5;
	overflow: hidden;
	display: none;
}

#permission-reset-guide {
	color: white;
	text-align: center;
	font-size: 12px;
	height: 0px;
	overflow: hidden;
}

#copy-link-input {
	position: fixed;
	top: -100%;
}

#copy-btn {
	transition: background 300ms;
	display: none;
}

@keyframes btn-click {
	0% 		{ background: #ffffffaa }
	100%	{ background: #ffffff00 }
}