.welcome-consent-overlay {
	position: fixed;
	z-index: 100000;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	min-height: 100dvh;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.welcome-consent-window {
	width: min(680px, calc(100vw - 2rem));
	background: #fff;
	border-radius: 10px;
	padding: 1.5rem;
	max-height: calc(100vh - 2rem);
	max-height: calc(100dvh - 2rem);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.welcome-consent-window ul {
	padding-left: 1.2rem;
}

.welcome-consent-window li {
	margin-bottom: 0.5rem;
}

.welcome-consent-window form {
	position: sticky;
	bottom: -1.5rem;
	margin: 0 -1.5rem -1.5rem;
	padding: 0.85rem 1.5rem 1.5rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.94), #fff 28%);
	border-top: 1px solid #dee2e6;
}

@media (max-width: 576px) {
	.welcome-consent-overlay {
		align-items: flex-start;
		padding: 0.75rem;
	}

	.welcome-consent-window {
		width: calc(100vw - 1.5rem);
		max-height: calc(100dvh - 1.5rem);
		padding: 1rem;
	}

	.welcome-consent-window form {
		bottom: -1rem;
		margin: 0 -1rem -1rem;
		padding: 0.75rem 1rem 1rem;
	}
}

.cookie-modal-overlay {
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	min-height: 100dvh;
	background: rgba(0, 0, 0, 0.4);
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.cookie-modal-window {
	width: min(640px, calc(100vw - 2rem));
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
	max-height: calc(100vh - 1.5rem);
	max-height: calc(100dvh - 1.5rem);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.cookie-modal-heading {
	margin-bottom: 0.75rem;
	font-size: 1.5rem;
}

.cookie-modal-content p {
	margin-bottom: 0.9rem;
}

.cookie-category {
	border-top: 1px solid #dee2e6;
	padding-top: 1rem;
	margin-top: 1rem;
}

.cookie-category-readonly {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	padding: 0.85rem;
}

.cookie-category-heading {
	font-size: 1.05rem;
	margin-bottom: 0.75rem;
}

.cookie-fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.cookie-field {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.cookie-radio-input {
	margin-top: 0.2rem;
}

.cookie-label {
	line-height: 1.35;
}

.cookie-save-btn {
	margin-top: 1rem;
	position: sticky;
	bottom: 0;
	z-index: 2;
	background: #fff;
	padding-top: 0.75rem;
	border-top: 1px solid #dee2e6;
}

@media (max-width: 576px) {
	.cookie-modal-overlay {
		align-items: flex-start;
		padding: 0.5rem;
	}

	.cookie-modal-window {
		width: calc(100vw - 1rem);
		max-height: calc(100vh - 1rem);
		max-height: calc(100dvh - 1rem);
		padding: 1rem;
		border-radius: 6px;
	}

	.cookie-modal-heading {
		font-size: 1.3rem;
	}
}
