.cookies-info {
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 999;
	display: none;
}

.cookies-info.opened {
	display: block;
}

.cookies-info__wrapper {
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
}

.cookies-info__container {
	display: flex;
	gap: 48px;
	padding: 26px 38px 23px;
	border: 2px solid #64C74C;
	background: #FFF;
	border-radius: 13px;
	align-items: center;
}

.cookies-info__accept {
	background: #4BB933;
	padding: 10px 25px;
	color: #FFF;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}

.cookies-info__accept:hover {
	cursor: pointer;
	background: #4fda2f;
}

.cookies-info__text {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #000;
}

.cookies-info__text a {
	color: #000;
	text-decoration: underline;
}

@media (max-width: 991px) {
	.cookies-info__wrapper {
		margin: 0 30px;
	}

	.cookies-info {
		bottom: 10px;
	}
}

@media (max-width: 525px) {
	.cookies-info__accept {
		padding: 5px 15px;
		font-size: 14px;
	}

	.cookies-info__container {
		padding: 15px 20px;
		flex-direction: column;
		gap: 20px;
	}
}