.cookie-overlay {
	background: rgba(0, 0, 0, 0.5);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 20;
}

.cookie-box {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	font-family: Inter, sans-serif;
	gap: 13px;
	left: 0;
	margin: 10px;
	padding: 20px;
	position: fixed;
	text-align: center;
	top: 50%;
	transform: translateY(-51%);
	width: calc(100% - 20px);
	z-index: 50;
}

	.cookie-box img {
		display: block;
		margin: 0 auto;
		position: relative;
		top: -5px;
		width: 112px;
	}

	.cookie-box h1 {
		color: #555;
		font-size: 24px;
		font-weight: 700;
		letter-spacing: -0.7px;
		line-height: 143%;
		margin: 10px 0 4px 0;
	}

	.cookie-box p {
		color: #666;
		font-size: 16px;
		line-height: 21px;
		margin: 0;
	}

	.cookie-box a {
		color: #298ccd;
		text-decoration: none;
	}

.cookie-box__controls {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 23px;
}

.cookie-btn {
	align-items: center;
	background: #fff;
	border: 2px solid #eee;
	box-sizing: border-box;
	color: #999;
	cursor: pointer;
	border-radius: 30px;
	display: inline-flex;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.32px;
	line-height: 1;
	justify-content: center;
	padding: 12px 25px;
}

	.cookie-btn.cookie-btn--success {
		background: #41bd7f;
		border: 2px solid #41bd7f;
		color: #fff;
		font-weight: 700;
	}

@media screen and (min-width: 590px) {
	.cookie-box {
		bottom: 0;
		display: flex;
		padding: 20px 25px 35px 15px;
		text-align: left;
		top: auto;
		transform: translateY(0);
		width: 560px;
	}

	.cookie-box__controls {
		flex-direction: row;
		margin-top: 23px;
	}

	.cookie-btn {
		margin-bottom: 0;
	}
}