/* CSS for SheerID Verify extension */

#sheerid-iframe {
	width: 100%;
	height: 800px;
	border: 0;
}
#overlay {
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
	position: fixed;
	top: 0;
	z-index: 1000;
}
#lightbox {
	position: fixed;
	background-color: white;
	z-index: 1001;
	text-align: left;
	width: 80%;
	top: 100px;
	left: 10%;
}
#lightbox a.close {
	cursor: pointer;
	color: black;
	position: absolute;
	display: block;
	float: right;
	right: -14px;
	top: -14px;
	height: 28px;
	width: 28px;
	background-image: url(https://s3.amazonaws.com/com.sheerid.resources/common/images/close.png);
}
#lightbox a.close span {
	display: none;
}

/* adjust width */
@media only screen and (min-width : 1600px) {
	#lightbox {
		width: 50%;
		left: 25%;
	}
}

@media only screen and (min-width : 1200px) {
	#lightbox {
		width: 70%;
		left: 15%;
	}
}

@media only screen and (max-width : 500px) {
	#lightbox {
		top: 0;
		left: 0;
		width: 100%;
	}
}

/* adjust height */
@media only screen and (max-height : 1000px) {
	#lightbox {
		top: 20px;
	}
}

@media only screen and (max-height : 820px) {
	#lightbox {
		top: 0;
		max-height: 100%;
		overflow-y: auto;
	}

	#lightbox a.close {
		right: 0;
		top: 0;
	}
}
