@charset "utf-8";
a.lightbox2 {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-decoration: none;
	background-color: white;
	text-align: center;
	vertical-align: middle;
}
a.lightbox {
	display: block;
	width: 110px;
	height: 40px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #FFFFFF;
	line-height: 40px;
	text-decoration: none;
	background-color: #FF6609;
	text-align: center;
	transition: 0.2s;
	animation:wiggle 0.5s 6;
	animation-delay: 8s !important;
	-webkit-animation-delay: 8s !important;
	}
	@keyframes wiggle {
		0%{-webkit-transform:rotate(4deg);}
		50%{-webkit-transform:rotate(-4deg);}
		100%{-webkit-transform:rotate(4deg);}
		0%{-moz-transform:rotate(4deg);}
		50%{-moz-transform:rotate(-4deg);}
		100%{-moz-transform:rotate(4deg);}
		0%{transform:rotate(4deg);}
		50%{transform:rotate(-4deg);}
		100%{transform:rotate(4deg);}
	}
a.lightbox:hover {
	color: #ffffff;
	background-color: #3176c5;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transform:translateY(0.4px);
}
.lightbox-target {
	position: fixed;
	top: -70%;
	left: 50%;
	margin-left: -50%;
	background: rgba(0,0,0,0.85);
	width: 100%;
	opacity: 0;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px; 
	border-radius: 4px;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
	overflow: hidden;
	z-index: 2000000000000000000000;
}
.lightbox-target > table {
	margin: auto;
	position: absolute;
	left: 50%;
	margin-left: -300px;
	top: 120px;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	z-index: 20000000000000000000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.lightbox-target:target {
	opacity: 1;
	top: 0;
	bottom: 0;
}
.lightbox-target:target table {
	max-height: 100%;
	max-width: 100%;
}
.lightbox-target:target a.lightbox-close {
	top: 0px;
}