/* cookies.css */

.cookies-alert {
	background: url(images/wrapper-bg.png) #f2f2f2;
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 20;
	transform: translateY(100%);
	transition: transform 0.2s ease;
	/* font-size: 14px; */
}

.cookies-alert.is-show {
	transform: translateY(0);
	transition: transform 0.2s ease;
}

.cookies-alert__container {
	align-items: center;
	display: grid;
	grid-template-columns: auto 2fr;
	grid-gap: 5px;
	padding: 12px;
}

.cookies-alert__title {
	margin: 0 0 5px;
}

.cookies-alert p {
	/* color: #333; */
	margin: 0;
	/* line-height: 1.5; */
}

.cookies-alert a {
	color: #333;
}

.cookies-alert__right {
	align-items: center;
	display: flex;
}

.cookies-alert__btn {
	margin-left: 15px;
}

.cookies-alert button {
	background-color: #689e0e;
	border: none;
	color: white;
	padding: 6px 8px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
}