.lightbox,
.lightbox .lightbox-background{
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	overflow-y: auto;
}

.lightbox .lightbox-background{
	position: absolute;
	display: block;
	z-index: 0;
	background: rgba(0, 0, 0, 0.85);
}

.lightbox .box{
	position: absolute;
	left: 50%;
	top: 50%;
	
	width: 80%;
	max-height: 80%;
	max-width: 720px;

	background: #fff;
	border-radius: 0.25em;
	padding: 2em;
	
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}

.lightbox .content{
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 100%;
}

.lightbox .content p{
	margin-bottom: 0.5em;
}

#advice.lightbox .content{
	overflow-x: inherit;
	overflow-y: inherit;
}

.lightbox .close-button{
	position: absolute;
	font-size: 1em;
	width: 2.5em;
	height: 2.5em;
	right: -0.6em;
	top: -0.6em;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.15s;
	line-height: 2.5em;
	text-align: center;
}

.lightbox .close-button:before{
	font-family: "WebFont";
	content: "'";
}

.lightbox-content{
	display: none;
}

@media screen and (max-width: 768px) {
	.lightbox .box{
		padding: 1.5em;
	}
}

@media screen and (max-width: 600px) {
	#advice.lightbox .content p.about{
		display: none;
	}
}