

.cookie {
	position: fixed;
	bottom: 50px;
	z-index: 800;
	padding: 0 10px;
	display: flex;
	left: 50%;
	transform: translateX(-50%);
}
.cookie__content {
	background: rgba(44,62,80,.9);
	box-shadow: 0 23px 39px rgba(3,53,88,.2);
	border-radius: 15px;
	margin: 0 auto;
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px 16px 16px;
	width: 290px;
}
@media(min-width:400px) {
	.cookie__content { width: 375px; }
}
@media(min-width:946px) {
	.cookie__content {
		flex-direction: row;
		padding: 15px 25px;
		width: auto;
	}
}
.cookie__image {
	width: 56px;
	height: 45px;
}
.cookie__img {
	max-width: none;
	width: 100%;
	height: 100%;
}
.cookie__text {
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	display: inline-block;
	margin: 10px 0 20px;
	text-align: center;
	flex: 1;
}
.cookie__text a {
	color: #6cf;
}
.cookie__text a:hover {
	background: rgba(51,153,224,.05);
}
.cookie__text a:active {
	background: rgba(51,153,224,.15);
}
@media(min-width:946px) {
	.cookie__text {
		margin: 0 20px;
	}
}
.cookie__button {
	background: #3399e0;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	line-height: 25px;
	font-weight: 600;
	padding: 4px 25px !important;
}
@media(max-width:946px) {
	.cookie__button {
		width: 100%;
	}
}