.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--content {}
.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_bar--action__accept {}
.pix_consent_bar--accept {}
.pix_consent_bar--reject {}
.pix_consent_status_box {
	align-items: center;
	display: inline-flex;
	gap: 1rem;
}
.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-weight: 600;
	white-space: nowrap;
	opacity: 0.5;
}
.pix_consent_status_box--toggle_label.is-active {
	opacity: 1;
}