@keyframes showbanner {
	0% {
		bottom: -150px;
	}

	to {
		bottom: 10px;
	}
}
.cookie-banner {
	position: fixed;
	bottom: -150px;
	left: 0;
	right: 0;
	width: 100%;
	height: 126px;
	z-index: 99;
	animation: showbanner .3s 1s forwards;
	display: none;
}

.cookie-banner__content {
	display: flex;
	align-items: center;
	gap: 50px;
	width: 1210px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	background-color: rgba(244,245,246,.9);
	border-radius: 23px;
}

.cookie-banner__text {
	font-size: 18px;
	line-height: 22px;
	color: #000;
	font-weight: 300;
	margin: 0;
	padding: 0;
}

.cookie-banner__permission {
	display: inline-block;
	text-underline-offset: 4px;
	text-decoration: none;
	color: #df4d22;
}

.cookie-banner__button {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 0 auto;
	width: 303px;
	font-family: inherit;
	font-size: 16px;
	cursor: pointer;
	transition: .3s;
}

@media (max-width:430px) {
	.cookie-banner {
		width: 98%;
		height: auto;
		margin: 0 auto;
		bottom: 10px;
	}

	.cookie-banner__content {
		flex-direction: column;
		width: auto;
		height: 100%;
		gap: 10px;
		margin: 0 auto;
		padding: 15px 10px;
		border-radius: 10px;
	}

	.cookie-banner__text {
		margin: 0;
		font-size: 13px;
		line-height: 15px;
	}

	.cookie-banner__button {
		width: 220px;
		height: 40px;
	}
}
form input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
.policy span {
	font-size: 22px !important;
}