.fixed-cookie {
	position: fixed;
	left: 30px;
	bottom: 30px;
	max-width: 380px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 20px 30px;
	background: #fff;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
	text-align: center;
	z-index: 999;
}
.fixed-cookie__text {
	font-size: 14px;
	line-height: 1.5;
}
.fixed-cookie__action {
	margin-top: 10px;
}
.fixed-cookie__btn.btn {
	font-size: 12px;
	padding: 10px 15px;
}
.fixed-cookie__wrap-close {
	position: absolute;
	top: 2px;
	right: 2px;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 10px;
	color: #aaa;
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
}
.fixed-cookie__wrap-close:hover{
	color: #000;
}