.kt-cookies-popup {
	position: fixed;
	text-align: center;
	bottom: 0;
	left: 0;
	z-index: 1100;
	width: 100%;
	padding: 15px 30px;
	background-color: rgba(0,0,0,.8);
	border-top: 2px solid rgba(255,255,255,.1);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0,100%,0);
	-webkit-transform: translate3d(0,100%,0);
	-ms-transform: translate3d(0,100%,0);
	-sand-transform: translate3d(0,100%,0);
	-o-transform: translate3d(0,100%,0);
	-moz-transform: translate3d(0,100%,0);
	-webkit-transition: all .4s cubic-bezier(.784,.134,.14,.85);
	-moz-transition: all .4s cubic-bezier(.784,.134,.14,.85);
	-o-transition: all .4s cubic-bezier(.784,.134,.14,.85);
	transition: all .4s cubic-bezier(.784,.134,.14,.85);
}
.kt-cookies-popup.popup-display {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-sand-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
}
.cookies-buttons{margin-top: 20px;margin-bottom: 10px;}
.cookies-buttons a, .cookies-buttons a:hover{color: white;text-decoration:underline;padding: 10px;}
.cookies-buttons a.cookies-accept-btn {border:1px solid white;padding: 10px;display: inline;text-decoration: none;}
@media (max-width: 768px) {
	.cookies-info-text{font-size: 9pt;}
	.cookies-buttons{font-size: 9pt;}
}