.cookies {
	position: fixed;
	z-index: 26;
	right: 0;
	bottom: 0;
	left: 0;
	transition: transform .4s, opacity .4s;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	padding-top: 13px;
	padding-bottom: 13px;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, .2);
}

.cookies__container {
	display: grid;
	grid-template-columns: -webkit-max-content auto -webkit-max-content;
	grid-template-columns: max-content auto max-content;
}

.icon {
	display: block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

.cookies__info {
	color: var(--orange1);
	font-size: 20px;
	transform: translateY(3px);
}

.link--blue-dark {
	color: #09478f;
}

.link {
	cursor: pointer;
	text-decoration: none;
	outline: 0;
	touch-action: manipulation;
}

.cookies__close {
	display: block;
	padding: 0;
	color: rgba(0, 0, 0, .2);
	font-size: 24px;
	border: none;
	background: none;
	cursor: pointer;
}

.icon {
	display: block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

@media (min-width: 768px) {
	.cookies__container {
		grid-column-gap: 20px;
	}
}

@media(max-width: 767px) {
	.cookies__title {
		font-size: 13px;
		margin-left: 11px;
	}
}