html,
body {
	position: relative;
	height: 100%;
	margin: 0px;
	overflow: hidden;
}

body {
	background: #eee;
	font-family: Arial, Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #000;
	margin: 0;
	padding: 0;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	color: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	height: 70%;
}

.corners {
	position: absolute;
	z-index: 99999;
	width: 40px;
	height: 40px;
}

.corners .h-line {
	width: 100%;
	border-bottom: 2px solid #000;
}

.corners .v-line {
	height: 100%;
	border-left: 2px solid #000;
}

.corner-top-left {
	left: 30px;
	top: 30px;
}

.corner-top-right {
	right: 30px;
	top: 30px;
}

.corner-top-right .v-line {
	right: 0px;
	position: absolute;
}

.corner-bottom-left {
	left: 30px;
	bottom: 30px;
}

.corner-bottom-left .h-line {
	bottom: 0px;
	position: absolute;
}

.corner-bottom-right {
	right: 30px;
	bottom: 30px;
}

.corner-bottom-right .h-line {
	bottom: 0px;
	position: absolute;
}

.corner-bottom-right .v-line {
	bottom: 0px;
	right: 0px;
	position: absolute;
}

.btn {
	cursor: pointer;
	text-decoration: none;
	outline: none;
	background-color: transparent;
	text-align: center;
	border: none;
	margin-bottom: 3px;
	border-radius: 10px;
	font-weight: 400;
	font-size: 18px;
	vertical-align: middle;
	line-height: 40px;
	font-family: Arial, sans-serif;
	display: inline-block;
	padding: 0 20px;
	background-color: #f64747;
	-webkit-box-shadow: 0 3px 0 0 #cc0000;
	-moz-box-shadow: 0 3px 0 0 #cc0000;
	box-shadow: 0 3px 0 0 #cc0000;
	border-radius: 0px;
	color: #fff;
	line-height: 44px;
	z-index: 99999999;
}
.btn.btn-link {
  position: absolute;
	right: 45px;
	bottom: 45px;
}
.btn.capture {
  position: absolute;
	right: 175px;
	bottom: 45px;
  padding-left: 40px;
}
.btn.capture img {
  position: absolute;
  margin: 8px 0 0 -30px;
  height: 24px;
}
.swipe-container {
	position: absolute;
	z-index: 99999;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: #ffffffb3;
	border-radius: 50%;
}

.swipe-container div {
	color: #FFFFFF;
	width: 200px;
	height: 26px;
	position: absolute;
	top: -80px;
	left: 50%;
	margin-left: -100px;
	z-index: 9999;
	text-align: center;
}

.swipe-container .swipe {
	margin: 15px 0 0 10px;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	z-index: 99;
	margin-top: -25px;
}

.swipe-container:before {
	content: '';
	position: relative;
	display: block;
	width: 300%;
	height: 300%;
	box-sizing: border-box;
	margin-left: -100%;
	margin-top: -100%;
	border-radius: 50%;
	background-color: #01a4e9;
	-webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.swipe-container:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	-webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
	animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
	0% {
		-webkit-transform: scale(0.33);
		transform: scale(0.33);
	}
	80%,
	100% {
		opacity: 0;
	}
}

@keyframes pulse-ring {
	0% {
		-webkit-transform: scale(0.33);
		transform: scale(0.33);
	}
	80%,
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes pulse-dot {
	0% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
}

@keyframes pulse-dot {
	0% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
}

.message-container {
	display: none;
	position: absolute;
	top: 10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #ffffffb3;
	color: #000;
	font-size: 12px;
	padding: 4px 8px;
	text-align: center;
}
#videocanvas {
  position: absolute;
  left: -10000px;
}
