.lm-consent {
	position: relative;
	z-index: 9998;
	direction: rtl;
}

.lm-consent__settings {
	position: fixed;
	inset-inline-start: 16px;
	bottom: 14px;
	min-height: 38px;
	padding: 7px 12px;
	border: 1px solid #bfd3c7;
	border-radius: 6px;
	background: #fff;
	color: #21483a;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(21, 52, 42, .12);
}

.lm-consent__dialog {
	position: fixed;
	inset-inline: 16px;
	bottom: 16px;
	max-width: 700px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px;
	border: 1px solid #c9ddd2;
	border-radius: 8px;
	background: #fff;
	color: #142a23;
	box-shadow: 0 18px 48px rgba(18, 48, 38, .2);
}

.lm-consent__dialog[hidden] {
	display: none;
}

.lm-consent__content {
	max-width: 460px;
}

.lm-consent__content strong {
	display: block;
	margin-bottom: 6px;
	font-size: 17px;
}

.lm-consent__content p {
	margin: 0 0 5px;
	font-size: 14px;
	line-height: 1.6;
}

.lm-consent__content a {
	color: #176c52;
	font-size: 13px;
}

.lm-consent__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.lm-consent__actions button {
	min-height: 42px;
	padding: 9px 14px;
	border-radius: 6px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.lm-consent__accept {
	border: 1px solid #187b5c;
	background: #187b5c;
	color: #fff;
}

.lm-consent__reject {
	border: 1px solid #bfd3c7;
	background: #f8fbf9;
	color: #21483a;
}

.lm-consent[data-status="unknown"] .lm-consent__settings {
	display: none;
}

@media (max-width: 680px) {
	.lm-consent__settings {
		inset-inline-start: 10px;
		bottom: 10px;
	}

	.lm-consent__dialog {
		inset-inline: 10px;
		bottom: 10px;
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		padding: 15px;
	}

	.lm-consent__actions {
		display: grid;
		grid-template-columns: 1fr;
	}
}
