.lcc-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 99999;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background-color: #ffffff;
	color: #000000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.lcc-banner__text {
	flex: 1 1 300px;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.lcc-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.lcc-btn {
	display: inline-block;
	box-sizing: border-box;
	padding: 10px 18px;
	font-size: 14px;
	line-height: 1.2;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	background-color: #2271b1;
	color: #ffffff;
}

.lcc-btn--accept {
	background-color: #2271b1;
	color: #ffffff;
}

.lcc-btn--reject {
	background-color: #6c757d;
	color: #ffffff;
}

.lcc-btn--config {
	background-color: transparent;
	color: inherit;
	text-decoration: underline;
}

.lcc-banner--hidden {
	display: none !important;
}

@media (max-width: 600px) {
	.lcc-banner {
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
	}

	.lcc-banner__actions {
		justify-content: center;
		width: 100%;
	}

	.lcc-btn {
		flex: 1 1 auto;
		text-align: center;
	}
}