.cookie-notice {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	color: #000;
	padding: 16px;
	z-index: 1050;
	font-size: 12px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-notice__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: center;
}

.cookie-notice__label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	cursor: pointer;
	text-align: left;
}

.cookie-notice__checkbox {
	flex-shrink: 0;
	margin-top: 2px;
}

.cookie-notice__text a {
	color: #2274a5;
	text-decoration: none;
}

.cookie-notice__text a:hover {
	text-decoration: underline;
}

.cookie-notice__accept {
	width: auto;
	margin: 0;
	box-sizing: border-box;
	outline: 0;
	text-decoration: none;
	white-space: nowrap;
	appearance: none;
	overflow: hidden;
	cursor: pointer;
	height: 30px;
	padding: 0 10px;
	font-size: 14px;
	line-height: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	border: 1px solid #000;
	text-align: center;
	background-color: transparent;
	color: #151528;
	font-weight: 500;
	transition: color 150ms ease-in-out, border-color 150ms ease-in-out;
}

.cookie-notice__accept:hover:not(:disabled) {
	color: #28a745;
	border-color: #28a745;
}

.cookie-notice__accept:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

@media (max-width: 576px) {
	.cookie-notice__inner {
		flex-direction: column;
	}

	.cookie-notice__label {
		text-align: center;
		justify-content: center;
	}
}
