.fixed-bg {
      /*background-image: url("images/background_teal.jpg"); */
      min-height: 500px;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

.dataBox {
	width: 300px;
	height: 30px;
	border-radius: 40px;
	padding: 8px 16px;
	margin: 40px 0 10px 0;
	font-size: 16px;
	outline: none;
	border-color: #03ad91;
	text-align: center;
	border-width: 4px;
}

.qrdiv {
	text-align: center;
}

.qrcode {
	margin: 30px 0;
}

.qrcode > img {
	background-color: #fff;
}

.downloadBtn {
	background: none;
	border: none;
	color: #809180;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	padding: 2px;
}

.downloadBtn:hover {
	border-bottom: dashed #809180 2px;
}

.hide {
	display: none;
}

.error {
	border-color: #e22416;
}

.shake {
	animation: shake 0.5s;
	animation-iteration-count: infinite;
}

@keyframes shake {
	0% {
		transform: translate(1px, 1px) rotate(0deg);
	}
	10% {
		transform: translate(-1px, -2px) rotate(-0.5deg);
	}
	20% {
		transform: translate(-3px, 0px) rotate(0.5deg);
	}
	30% {
		transform: translate(3px, 2px) rotate(0deg);
	}
	40% {
		transform: translate(1px, -1px) rotate(0.5deg);
	}
	50% {
		transform: translate(-1px, 2px) rotate(-0.5deg);
	}
	60% {
		transform: translate(-3px, 1px) rotate(0deg);
	}
	70% {
		transform: translate(3px, 1px) rotate(-0.5deg);
	}
	80% {
		transform: translate(-1px, -1px) rotate(0.5deg);
	}
	90% {
		transform: translate(1px, 2px) rotate(0deg);
	}
	100% {
		transform: translate(1px, -2px) rotate(-0.5deg);
	}
}
