#g4s-presence-control-overlay{
	z-index: 9999999;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(15, 15, 15, 0.78);

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

#g4s-capture-frame{
	width: 90vw;
	height: 90vh;
	object-fit: cover;

}

#g4s-capture-camera, #g4s-capture-output, #g4s-capture-sensor{
	position: absolute;
	height: 90vh;
	width: 90vw;
	object-fit: cover;
	transform: scaleX(-1);
	/*noinspection CssInvalidPropertyValue*/
	filter: FlipH;
}

#g4s-capture-trigger{
	width: 200px;
	background-color: black;
	color: white;
	font-size: 16px;
	border-radius: 30px;
	border: none;
	padding: 15px 20px;
	text-align: center;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
	position: fixed;
	bottom: 10vh;
	left: calc(50% - 100px);
}

#g4s-capture-output.taken{
	height: 100px!important;
	width: 100px!important;
	transition: all 0.5s ease-in;
	border: solid 3px white;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
	top: 20px;
	right: 20px;
	z-index: 2;
}