@charset "utf-8";
/* CSS Document */
    .privacy-prompt {
	width:100%;
	padding:20px;
	position:fixed;
	left:0;
	bottom:0;
	background:rgba(0, 0, 0, .5);
	z-index:999999;
	display:none;
}
.privacy-prompt .text {
	font-size:16px;
	line-height:1.6em;
	margin-bottom:10px;
	color:#fff;
	text-align:center;
}
.privacy-prompt .text a {
	text-decoration:underline;
	color:#fff;
}
.privacy-prompt .agree-btn {
	background:#fff;
	color:#333;
	padding:6px 10px;
	border-radius:4px;
}
.privacy-prompt #reject-btn {
	background:#f1f1f1;
	color:#333;
}
.privacy-prompt .agree-btn:hover {
	opacity:0.7;
}
.agree-btns {
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	justify-content: center;
}
