#privacy-policy-popup{
	position: fixed;
	left: 50%;
	width: 80%;
	max-width: 800px;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0px;
	opacity: 1;
	background: #fff;
	-webkit-transition: bottom 1s, opacity 1s; /* Safari */
    transition: bottom 1s, opacity 1s;
    z-index: 9999999999999999999999;
}

.privacy-policy-popup-hidden{
	bottom: -250px !important;
	opacity: 0 !important;
}

#privacy-policy-popup-inner{
	position: relative;
	display: block;
	margin: 0px auto;
	color: #888;
	max-width: 800px;
	padding: 20px;
	font-family: "roboto", sans-serif;
	padding-right: 120px;
	border: 1px solid #eee;
	box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.1);
	background: #fff;
	font-size: 13px;
	line-height: 140%;
}

#privacy-policy-popup-link{
	color: #444;
}

#privacy-policy-popup-link:hover{
	color: #000;
}

#privacy-policy-popup-accept{
	padding: 10px;
	text-align: center;
    background-color: #333;
    color: #fff;
    margin-left: 0px;
    top: 50%;
    display: block;
    position: absolute;
    right: 20px;
    width: 80px;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

#privacy-policy-popup-accept:hover, #privacy-policy-popup-accept:active{
	background-color: #222;
}

@media only screen and (max-width: 600px) {
	#privacy-policy-popup{
		width: 100%;
	}
	#privacy-policy-popup-inner{
		padding-right: 20px;
	}
	#privacy-policy-popup-accept{
		width: 100%;
		margin-top: 15px;
		top: 0px;
		position: initial;
		-ms-transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		transform: none;
	}
}