.pix_consent_bar {
	position: fixed;
	bottom: 1vh;
	left: 50%;
	max-width: 1000px;
	transform: translateX(-50%);
	width: calc(100% - 60px);
	z-index: 1000;
}
.pix_consent_bar.is-hidden {
	display: none;
}
.pix_consent_bar--inner {
	background-color: #fff;
	border: 2px solid #000;
	display: flex;
	gap: 1rem;
	justify-content: center;
	padding: 1rem;
}
.pix_consent_bar--actions {
	align-items: center;
	align-content: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
.pix_consent_bar--action {
	white-space: nowrap;
}
.pix_consent_status_box {
	align-items: center;
	border: 0.5rem solid #0D5257;
	display: inline-flex;
	gap: 1rem;
	padding: 2rem;
}
.pix_consent_status_box--toggle {
	background-color: gray;
	border-radius: 2em;
	height: 2em;
	position: relative;
	width: 4em;
}
.pix_consent_status_box--toggle[data-pix-consent="true"] {
	background-color: #2B6986;
}
.pix_consent_status_box--toggle[data-pix-consent="false"] {
	background-color: darkgray;
}
.pix_consent_status_box--toggle::before {
	background-color: white;
	border-radius: 100%;
	content: '';
	display: block;
	height: calc(2em - 8px);
	left: 4px;
	position: absolute;
	top: 4px;
	transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
	width: calc(2em - 8px);
}
.pix_consent_status_box--toggle[data-pix-consent="false"]::before {
	transform: translateX(calc(2em));
}
.pix_consent_status_box--toggle_label {
	font-size: 1.2em;
	font-weight: 600;
	white-space: nowrap;
}
.pix_consent_modal {
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1100;
	transition: opacity 0.3s ease-in-out;
}
.pix_consent_modal.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.pix_consent_modal--inner {
	background-color: #fff;
	padding: 1rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: calc(100% - 2rem);
	max-width: 800px;
	overflow-y: auto;
	width: calc(100% - 2rem);
	z-index: 1000;
}
.pix_consent_modal--close {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
}
.pix_consent_modal--content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}
.pix_consent_modal--prefs_row {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	width: 100%;
}
.pix_consent_modal--prefs_details {
	border: 1px solid black;
	border-radius: 0.5rem;
	width: 100%;
}
.pix_consent_modal--prefs_details_summary {
	cursor: pointer;
	list-style: none;
	padding: 0.5rem;
}
.pix_consent_modal--prefs_details_summary:before {
	border-style: solid;
	border-width: 0.4em 0 0.4em 0.6em;
	border-color: transparent transparent transparent black;
	content: '';
	display: inline-block;
	height: 0.8em;
	transition: transform 0.3s ease-in-out;
	width: 0.6em;
}
.pix_consent_modal--prefs_details[open] .pix_consent_modal--prefs_details_summary:before {
	transform: rotate(90deg);
}
.pix_consent_modal--prefs_details_content {
	padding: 0 0.5rem 1rem 0.5rem;
}
.pix_consent_modal--status_label {
	width: 20%;
}
.pix_consent_modal--toggle {
	align-items: center;
	display: inline-flex;
}
.pix_consent_modal--toggle::before {
	content: 'On';
}
.pix_consent_modal--toggle:has(.pix_consent_modal--toggle_input:not(:checked))::before {
	content: 'Off';
}
.pix_consent_modal--toggle_input {
	height: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 0;
}
.pix_consent_modal--toggle_slider {
	background-color: #e5e9f2;
	border-radius: 9999px;
	cursor: pointer;
	display: inline-block;
	height: 24px;
	position: relative;
	transition: background-color 0.2s ease-in-out;
	width: 44px;
}
.pix_consent_modal--toggle_slider::after {
	background-color: #2b6986;
	border-radius: 9999px;
	content: '';
	height: 20px;
	left: 22px;
	position: absolute;
	top: 2px;
	transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
	width: 20px;
}
.pix_consent_modal--toggle_input:not(:checked) + .pix_consent_modal--toggle_slider {
	background-color: #f0f0f0;
}
.pix_consent_modal--toggle_input:not(:checked) + .pix_consent_modal--toggle_slider::after {
	background-color: #6f6f6f;
	transform: translateX(-20px);
}
.pix_consent_modal--footer {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 1rem;
}