#cares-cookie-consent-root {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 99999;
	width: 480px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#cares-cookie-consent-root * {
	box-sizing: border-box;
}

.cc-card {
	position: relative;
	display: none;
	width: 482px;
	background: #ffffff;
	color: #1b1b1b;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
	font-size: 13px;
	line-height: 1.5;
}

.cc-card.is-visible {
	display: block;
}

.cc-title {
	display: flex !important;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin: 0 8px;
	font-size: 16px;
	text-align: center;
	line-height: 150%;
	font-weight: 700;
	color: #27272A;
}

.cc-title.cc-modal-title {
	margin-right: 0;
	text-align: center;
	font-size: 16px;
}

.cc-text {
	margin: 0 0 6px;
	color: #4a4a4a;
	font-size: 14px;
	line-height: 1.45;
	text-align: justify;
}

.cc-link-wrap {
	margin: 0 0 10px;
	font-size: 14px;
	color: #4a4a4a;
}

.cc-link-wrap a {
	color: #2f6ce5;
	text-decoration: none;
}

.cc-link-wrap a:hover {
	text-decoration: underline;
}

.cc-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 10px;
}

.cc-btn {
	border: 1px solid #CFCFD3;
	height: 38px;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	padding: 0 8px;
}

.cc-btn-secondary {
	background: #ffffff;
	color: #333333;
}

.cc-btn-primary {
	background: #1C215D;
	color: #ffffff;
	border-color: #1C215D;
}

.cc-btn-primary:hover {
	background: #1f225f;
}

/* 
.cc-btn-secondary:hover {
	background: #f0f0f0;
} */
.m-0 {
	margin: 0;
}

.mb-6 {
	margin-bottom: 6px;

}

.cc-icon-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
	border: 0;
	background: #F2F2F3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	font-size: 18px;
	cursor: pointer;
	padding: 0;
}

.cc-icon-btn:hover {
	color: #111827;
}

.cc-modal-head {
	display: grid;
	grid-template-columns: 24px 1fr 24px;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.cc-modal-head .cc-icon-btn {
	position: static;
	width: 24px;
	height: 24px;
}

.cc-back-btn {
	font-size: 20px;
}

#cares-cookie-back svg {
	width: 12px;
	height: 12px;
}

.cc-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.cc-row-label {
	color: #3f3f3f;
	font-size: 14px;
	line-height: 1.35;
}

.cc-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
}

.cc-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cc-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d1d5db;
	transition: .2s;
	border-radius: 999px;
}

.cc-slider::before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 3px;
	top: 3px;
	background-color: #ffffff;
	transition: .2s;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cc-switch input:checked+.cc-slider {
	background-color: #4e86f7;
}

.cc-switch input:checked+.cc-slider::before {
	transform: translateX(18px);
}

@media (max-width: 767px) {
	#cares-cookie-consent-root {
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
	}

	.cc-card {
		width: 100%;
	}

	.cc-title {
		font-size: 16px;
	}

	.cc-title.cc-modal-title {
		font-size: 16px;
	}

	.cc-text {
		font-size: 14px;
	}

	.cc-link-wrap,
	.cc-row-label,
	.cc-btn {
		font-size: 14px;
	}
}