.fixed-cookie {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 100;
}
.fixed-cookie > .cookie {
	border-radius: 10px;
	-webkit-box-shadow: 0 12px 24px 0 rgba(0,0,0,0.1);
		box-shadow: 0 12px 24px 0 rgba(0,0,0,0.1);
	position: absolute;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
	-webkit-transition: opacity 0.3s ease 0s,margin 0.3s ease 0s,visibility 0.3s ease 0s;
	transition: opacity 0.3s ease 0s,margin 0.3s ease 0s,visibility 0.3s ease 0s;
	width: 420px;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	padding: 24px;
	background-color: #fff;
}
@media (max-width: 480px) {
	.fixed-cookie > .cookie {
		width:100% !important;
		left: auto !important;
		right: auto !important;
	}
}
.fixed-cookie > .cookie p {
	font-size: 14px;
	margin-bottom: 15px;
}
.fixed-cookie > .cookie.show {
	opacity: 1;
	visibility: visible
}
.fixed-cookie .button {
	margin-top: 15px;
}
.fixed-cookie .button a {
	display: block;
	width: 100%;
	background-color: #000000;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
}
.fixed-cookie .button a:hover {
	color: #fff;
}