.cookie-popup {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 20px;
	width: min(680px, calc(100vw - 32px));
	padding: 18px;
	background: #ffffff;
	border: 1px solid rgba(21, 27, 39, 0.12);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(21, 27, 39, 0.18);
}

.cookie-popup[hidden] {
	display: none;
}

.cookie-popup__content {
	min-width: 0;
}

.cookie-popup__title {
	margin-bottom: 6px;
	color: #151b27;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

.cookie-popup__text {
	color: rgba(21, 27, 39, 0.72);
	font-size: 14px;
	line-height: 1.45;
}

.cookie-popup__text a {
	color: #5b79bb;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cookie-popup__btn {
	flex-shrink: 0;
	min-width: 120px;
}

@media (max-width: 991.98px) {
	.cookie-popup {
		right: 12px;
		bottom: 86px;
		left: 12px;
		width: auto;
	}
}

@media (max-width: 575.98px) {
	.cookie-popup {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px;
	}

	.cookie-popup__btn {
		width: 100%;
	}
}
